gpt4 book ai didi

android - 键盘显示上忽略的 ScrollView 填充

转载 作者:行者123 更新时间:2023-12-04 15:05:57 27 4
gpt4 key购买 nike

假设我有这个简单的布局:

https://imgur.com/k6zuh3f

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="80dp"
android:clipToPadding="false">

<LinearLayout
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="16dp">

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_launcher" />

...


<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Eighth" />

</LinearLayout>

</ScrollView>

<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_margin="16dp"
android:text="Button" />

</RelativeLayout>

注意有 paddingBottomScrollViewclipToPadding=false .非常需要 Button看起来像 ScrollView 内容上的 float 按钮。 ScrollView 填充用于在内容下方腾出空间以使最后一个 child 可用。

如果最后一个 child 是 EditText我期待 ScrollView滚动制作 EditText在软件键盘上可见。但它以 https://imgur.com/GwOtLIq 结尾

使用 layout_marginBottom 可以实现某种预期行为而不是 paddingBottom ,但在这种情况下,我显然看不到 Button 后面的内容.截图 https://imgur.com/oSC24qV

有没有办法制作 ScrollView在键盘避免方面尊重其填充?

更新:这里有完整的 xml 代码 https://pastebin.com/P8n0aZ2i

最佳答案

您只需要在 list 中为您的 Activity 定义软输入调整类型。
您可以在 list 中添加以下行。

 <activity android:name=".Main2Activity" android:theme="@style/BaseTheme_FullScreen2"
android:windowSoftInputMode="adjustResize|adjustPan">
</activity>

关于android - 键盘显示上忽略的 ScrollView 填充,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58657925/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com