24

可能重复 Android:自动完成文本视图,建议列表显示在文本视图上方?

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

我在这里

在此处输入图像描述

这是我的清单文件

<?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>

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

4

8 回答 8

12

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

于 2012-08-13T10:55:34.983 回答
7

您可以调整布局,以便在下方有更多空间AutoCompleteTextView

或者

您可以更改下拉高度android:dropDownHeight并设置一些较高的值,当它在 a 内部scrollView并且AutoCompleteTextView靠近顶部时,这将起作用。

要显示焦点选项列表,请执行以下操作

autoCompleteTextView.setOnFocusChangeListener(new OnFocusChangeListener() {
    public void onFocusChange(View v, boolean hasFocus) {
        if(hasFocus) {
            autoCompleteTextView.showDropDown();
        }
    }
});

当用户专注于AutoCompleteTextView

于 2012-08-16T04:45:07.553 回答
7

诀窍是确保所需的下拉高度永远不会大于下面的可用空间。我的方法是创建一个覆盖的子类showDropDown

public class DownOnlyAutoCompleteTextView extends AppCompatAutoCompleteTextView {

    private final static int MINIMAL_HEIGHT = 50;

    public DownOnlyAutoCompleteTextView(Context context) {
        super(context);
    }

    public DownOnlyAutoCompleteTextView(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public DownOnlyAutoCompleteTextView(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @Override
    public void showDropDown() {
        Rect displayFrame = new Rect();
        getWindowVisibleDisplayFrame(displayFrame);

        int[] locationOnScreen = new int[2];
        getLocationOnScreen(locationOnScreen);

        int bottom = locationOnScreen[1] + getHeight();
        int availableHeightBelow = displayFrame.bottom - bottom;
        if (availableHeightBelow >= MINIMAL_HEIGHT) {
            setDropDownHeight(availableHeightBelow);
        }

        super.showDropDown();
    }
}

然后在您的布局中使用它,例如:

<your.package.DownOnlyAutoCompleteTextView
    android:id="@+id/auto_complete_text_view"
    android:layout_margin="12dp"
    android:hint="AutoComplete"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    tools:ignore="HardcodedText" />

调整MINIMAL_HEIGHT以适应您的要求 - 如果下面没有空间或空间很小,最好不要强迫这个问题。

编辑

正如评论中提到的,在某些 Android 版本中传递负数setDropDownHeight会触发异常。只要您定义MINIMAL_HEIGHT大于零,那应该不是问题。

于 2018-01-16T08:43:21.597 回答
1

这是我的解决方案

private final static int DELAY_MS = 500;
autoCompletionTextView.setOnTouchListener(new View.OnTouchListener() {
        @Override
        public boolean onTouch(View v, MotionEvent event) {
            autoCompletionTextView.requestFocus();
            new Handler().postDelayed(() -> autoCompletionTextView.showDropDown(), DELAY_MS);
            return false;
        }
    });

键盘显示后,建议列表会列在您的 AutoCompletionTextView 上方。

于 2017-05-22T06:46:21.630 回答
1

利用: android:dropDownHeight="wrap_content" in AutoCompleteTextView

于 2019-08-09T12:31:11.820 回答
0

只需在布局文件中添加android:dropDownHeight="100dp"标签AutoCompleteTextView将是我猜的最佳解决方案!它将简单地控制下拉高度的高度并允许我们滚动!

<AutoCompleteTextView
        android:id="@+id/acetxt_assignclient"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"   
        android:dropDownHeight="100dp">
</AutoCompleteTextView>
于 2013-11-19T11:42:25.970 回答
0

我发现如果您使用的是嵌套滚动视图,则更容易在它认为合适的情况下打开上方或下方的视图,而当您使用常规滚动视图时,它会在下方打开。

于 2021-01-14T06:03:29.847 回答
-2

在 Scrollview 中设置包含 Autocompletetextview 的完整布局

这将解决您的问题!

于 2013-02-20T06:14:14.683 回答