在我的应用程序中,我使用的是AutoCompleteTextView。 其中一个要求是隐藏分隔符。 我已将AutoCompleteTextView添加到布局:
<AutoCompleteTextView
android:id="@id/address_bar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="15dp"
android:layout_marginRight="8dp"
android:layout_toLeftOf="@id/address_operation_btn"
android:background="@null"
android:completionThreshold="1"
android:dropDownAnchor="@id/anchor"
android:dropDownVerticalOffset="13dp"
android:dropDownWidth="wrap_content"
android:ellipsize="end"
android:gravity="center"
android:layout_centerHorizontal="true"
android:hint="@string/address_bar_hint"
android:imeOptions="actionGo"
android:inputType="textUri"
android:maxLines="1"
android:saveEnabled="true"
android:singleLine="true"
android:dropDownListViewStyle="@style/searchResultsList"
android:textColor="@android:color/white"
android:textColorHint="#80FFFFFF"
android:textSize="17sp" />
我使用的风格是
<style name="searchResultsList" parent="@android:style/Widget.ListView">
<item name="android:divider">@android:color/transparent</item>
<item name="android:dividerHeight">0px</item>
</style>
但是分频器还在那里...... 怎么可以隐藏?
答案 0 :(得分:10)
使用您的应用主题覆盖它。在themes.xml
<style name="AppTheme" parent="@style/Theme.AppCompat.Light.DarkActionBar">
<item name="android:dropDownListViewStyle">@style/DropDownListViewStyle</item>
</style>
<style name="DropDownListViewStyle" parent="@style/Widget.AppCompat.ListView.DropDown">
<item name="android:divider">@android:color/transparent</item>
<item name="android:dividerHeight">0dp</item>
</style>
致记:http://daniel-codes.blogspot.com/2012/11/styling-autocompletetextview.html