Я використовую нове TextInputLayout
з бібліотеки дизайну. Я можу змусити його показати та змінити колір плаваючої етикетки. На жаль, актуальний EditText
натяк тепер завжди білий.
Я спробував змінити hintColor у XML, стилях та програмно, а також намагався використовувати, android.support.v7.widget.AppCompatEditText
але EditText
підказка завжди показує білий колір.
Ось мій XML для моїх TextInputLayout
таEditText
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android.support.design:hintTextAppearance="@style/GreenTextInputLayout">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/city"
android:textColorHint="@color/black"
android:hint="@string/city" />
</android.support.design.widget.TextInputLayout>
І ось стиль, який я використовую для TextInputLayout
(я спробував зробити hintTextColor
атрибут чорним, але нічого не зробив для мене):
<style name="GreenTextInputLayout" parent="@style/TextAppearance.AppCompat">
<item name="android:textColor">@color/homestory_green</item>
</style>