我正在使用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!
答案 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