gpt4 book ai didi

android - 显示软键盘时向上移动布局

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:28:36 25 4
gpt4 key购买 nike

我正在尝试在编辑文本获得焦点后出现软键盘时调整布局。现在,如果我有很多编辑文本并且键盘出现,最后的编辑文本将被隐藏,我无法向上滚动。

我的布局是这样构建的:

模板:

<LinearLayout>
<LinearLayout>
// header 1
</LinearLayout>
<LinearLayout>
// header 1
</LinearLayout>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:orientation="vertical">
// where I inflate view_1
</LinearLayout>
<LinearLayout>
// footer
</LinearLayout>
</LinearLayout>

View (view_1):

<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:focusable="true"
android:focusableInTouchMode="true">
<LinearLayout>
// ...
</LinearLayout>
<LinearLayout>
// ...
</LinearLayout>
<LinearLayout>
<TextView/>
<EditText/>
<TextView/>
<EditText/>
<TextView/>
<EditText/>
<TextView/>
<EditText/>
</LinearLayout>
</LinearLayout>
</ScrollView>

我已经尝试了 android:windowSoftInputMode 的各种组合(在 manifest.xml 上和以编程方式)。我尝试在 ScrollView 上设置 android:isScrollContainer="false",但没有设置。

我也试过这个answer ,将 GlobalLayoutListener 放在我的 ScrollView 中,但是当键盘出现时不会调用 onGlobalLayout。 isKeyboardShown 始终为 false。

最佳答案

我找到的最佳解决方案是在 ma​​nifest.xml 文件的 activity<> 标记中添加 adjustpan 属性。

<activity
android:name="MyActivity"
android:windowSoftInputMode="adjustPan"/>

关于android - 显示软键盘时向上移动布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28029264/

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