gpt4 book ai didi

android - 对话框 fragment 中软键盘后面的 Autocompletetextview 下拉菜单

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:56:00 24 4
gpt4 key购买 nike

我的应用程序中有一个对话框 fragment ,里面有一个 autocompletetextview,但是下拉列表没有与软键盘的顶部对齐,而是放在后面,无法访问某些项目。

这是布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:padding="10dp"
android:orientation="horizontal"
android:windowSoftInputMode="adjustPan|adjustResize">

<android.widget.AutoCompleteTextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:id="@+id/customDialogAtocompleteTextview"
android:layout_weight=".7"
android:layout_gravity="top" />

<LinearLayout
android:orientation="vertical"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight=".3">
<Button
android:id="@+id/customDialogBtOk"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Aceptar"/>
<Button
android:id="@+id/customDialogBtSearch"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Buscar"/>
<Button
android:id="@+id/customDialogBtMore"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Mas"/>
</LinearLayout>

</LinearLayout>

那么我怎样才能让它与键盘对齐呢?

最佳答案

理论说 android:windowSoftInputMode="adjustPan|adjustResize" 应该这样做,但由于某些原因它不这样做,所以你必须以编程方式做同样的事情:

getDialog().getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE);

奇迹发生了!!!

关于android - 对话框 fragment 中软键盘后面的 Autocompletetextview 下拉菜单,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39975265/

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