gpt4 book ai didi

android - 当软键盘可见时如何强制android布局向上移动

转载 作者:行者123 更新时间:2023-11-29 17:58:13 25 4
gpt4 key购买 nike

我有一个 TextView 、2 个编辑文本和一个垂直方向的 ListView 的 Activity ,当我们输入任何一个编辑文本时,这里的列表作为自动建议列表工作,现在的问题是当列表中填充了建议结果时,它始终保持在软键盘下方,即,如果我们必须检查并选择结果,那么我们首先必须隐藏键盘。有什么方法可以上推 Activity 布局,以便只有当列表包含我尝试过的内容时才可见 android:windowSoftInputMode="stateAlwaysHidden|adjustResize"也,但这对我没有帮助:(

请帮忙。

最佳答案

我们可以使用linearlayout来调整。

试试这个代码:

Activity :

android:windowSoftInputMode="adjustResize"

布局:

  <LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >

<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>

<ListView
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ListView>
</LinearLayout>

关于android - 当软键盘可见时如何强制android布局向上移动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17738733/

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