gpt4 book ai didi

android - AutocompleteTextView 建议列表上升

转载 作者:IT王子 更新时间:2023-10-28 23:31:25 25 4
gpt4 key购买 nike

可能的重复 Android : autocompletetextview, suggestion list displays above the textview?

当建议列表由用户滚动时,我正在完全尝试在键盘上重叠显示建议列表,但它总是打开一侧。

我是这样的

enter image description here

这是我的 list 文件

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.sl"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk android:minSdkVersion="8" />

<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:label="@string/app_name"
android:name=".SuggestionListActivity"
android:windowSoftInputMode="adjustResize|adjustPan|stateHidden">
<intent-filter >
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>

这是我的 main.xml 文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" android:padding="10dp">

<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
android:layout_margin="10dp"/>

<TextView android:layout_margin="10dp"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="This is testing for the auto complete textview in this application to display suggestion list overlapping on keyboard." />

<AutoCompleteTextView android:id="@+id/autocomplete"
android:layout_width="fill_parent" android:layout_margin="5dp"
android:layout_height="wrap_content" android:hint="Search"
android:layout_marginLeft="5dp" android:dropDownHeight="300dp"
android:inputType="textAutoComplete" android:singleLine="true"
/>

</LinearLayout>

当列表成为焦点时,如何在此代码中通过键盘显示建议。

最佳答案

我以前遇到过这个问题。对我来说,AutocompleteTextView 上方的屏幕空间比下方(在“正常”设备上测试)更多,因此列表向上打开。我稍微调整了布局,以便 AutocompleteTextView 下方有更多空间,并且它开始向下打开。这就是为我解决的问题。

关于android - AutocompleteTextView 建议列表上升,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11554766/

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