AutoCompleteTextView dropDown高度不正确

时间:2018-03-06 23:17:05

标签: android listview autocompletetextview android-popupwindow

我正在使用AutoCompleteTextView自定义item_layout。如果layout_width不是match_parent,则会有一个滚动条显示,当提示太大时,我只有一个提示。但是,如果我们使用宽度match_parent,则没有滚动条。我想使用有限宽度的AutoCompleteTextView锚点,而没有那令人讨厌的滚动。 这是代码。

item_layout.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:minHeight="48dp">

    <TextView
        android:id="@+id/autocomplete_title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:ellipsize="end"
        android:gravity="center_vertical"
        android:includeFontPadding="false"
        android:paddingLeft="12dp" />

</LinearLayout>
宽度有限的

main.xml (例如200dp)

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/anchor"
    android:layout_width="200dp"
    android:layout_height="wrap_content">

    <AutoCompleteTextView
        android:id="@+id/auto_complete"
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:completionThreshold="1"
        android:dropDownAnchor="@id/anchor"/>
</LinearLayout>

Result with limited width of anchor

main.xml width = match_parent

<LinearLayout
    android:id="@+id/anchor"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <AutoCompleteTextView
        android:id="@+id/auto_complete"
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:completionThreshold="1"
        android:dropDownAnchor="@id/anchor"/>
</LinearLayout>

Result with width="match_parent" anchor parammeter no scrollBar!

1 个答案:

答案 0 :(得分:0)

<AutoCompleteTextView
android:id="@+id/autocomplete_dogs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/Autocomplete"
android:hint="Search dogs..."
android:dropDownAnchor="@+id/header"
android:dropDownWidth="match_parent"
/>

以下是完整指南AutocompleteTextView