有没有一种方法可以更改autoCompleteTextView滚动条颜色的颜色?
在某些情况下,我有多个结果,它显示了一个灰色的滚动条,该滚动条与其他小部件的外观不匹配,我想对其进行更改。
我的xml是:
<AutoCompleteTextView
android:id="@+id/ATV_Search"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginStart="20dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="20dp"
android:background="@drawable/et_rounded"
android:dropDownHeight="150dp"
android:fontFamily="@font/assistant"
android:imeOptions="actionSearch"
android:inputType="text"
android:paddingStart="56dp"
android:paddingEnd="64dp"
android:textColorHint="@color/colorGray"
android:textSize="14sp"
app:layout_constraintTop_toTopOf="parent" />
我尝试添加:
android:scrollbarAlwaysDrawVerticalTrack="true"
android:scrollbarFadeDuration="0"
android:scrollbarSize="3dip"
android:scrollbarThumbVertical="@color/colorLightPurple"
android:scrollbars="vertical"
但这没用。
谢谢