我正在尝试更改textInputLayout标签/提示颜色。我看到它遵循了colorPrimary,所以我应用了一种设置原色的样式,但是它不起作用。
我的xml-
<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:hint="hint"
style="@style/Text"
>
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/edittext"/>
</com.google.android.material.textfield.TextInputLayout>
我的风格-
<style name="Text" parent="Widget.MaterialComponents.TextInputLayout.OutlinedBox">
<item name="android:colorPrimary">@color/white</item>
<item name="boxStrokeColor">@color/white</item>
答案 0 :(得分:0)
新材料库有点令人困惑。到目前为止,com.google.android.material:material:1.1.0-alpha02
中的textColorHint
无效,但是hintTextApperance
正常工作,这必须是一种可以定义文本属性的样式。