这是我的AutoCompleteTextView
<AutoCompleteTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:dividerHeight="4dp"
android:gravity="center"
android:inputType="textCapWords|textAutoCorrect"
android:textColor="@color/font_autocomplete"
android:textSize="18sp" />
有谁知道为什么设置android:dividerHeight
无效?
答案 0 :(得分:5)
AutoCompleteTextView是一个复合视图 - 它有一个EditText
组件和一个浮动DropDown
组件。 EditText
组件风格很简单,但DropDown
很难,因为它是AutoCompleteTextView
本身的属性和主题中通过android:dropDownListViewStyle
设置的样式的混合。
如果你想改变分隔符,你必须创建一个主题并指向一个样式,这不是一个明显的解决方案:
<style name="MyTheme">
<item name="android:dropDownListViewStyle">@style/DropDownListViewStyle</item>
</style>
<style name="DropDownListViewStyle">
<item name="android:dividerHeight">4dp</item>
</style>
但请注意,这些样式更改将适用于整个应用程序。因此,如果您的用户界面中有其他DropDown
个组件,那么它们也可能会受到影响。
答案 1 :(得分:0)
Autocompletetextview下拉自定义项目分隔符可以使用下面的项目布局和drawable来实现。 完整参考http://www.zoftino.com/android-autocompletetextview-custom-layout-and-adapter
自定义布局
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/textView"
style="?android:attr/dropDownItemStyle"
android:layout_width="match_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
android:ellipsize="marquee"
android:singleLine="true"
android:textAppearance="?android:attr/textAppearanceLargePopupMenu"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="6dp"
android:enabled="false"
android:background="@drawable/divider"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textView" />
</android.support.constraint.ConstraintLayout>
自定义绘图
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:tint="#42a5f5"
android:shape="rectangle">
<corners
android:radius="4dp"/>
<size
android:height="6dp" />
<solid android:color="#42a5f5" />
</shape>