我在Android 4+上更改AutoCompleteTextView的textColor时遇到了一些麻烦,无论如何它都是黑色的。
我的主题是使用@ style / Theme.AppCompat作为父级,因此此textview上的文本不可见,我需要将其更改为白色。
在XML上我有以下内容:
<AutoCompleteTextView
android:id="@+id/login_username"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:layout_weight="1"
android:hint="[Username]"
android:inputType="text|textNoSuggestions|textFilter"
android:paddingLeft="10dp"
android:singleLine="true"
android:textSize="20sp"
android:textColor="#FFFFFF"
/&GT;
无论我在textColor上使用什么颜色,它总是黑色的!