TextInputLayout标签颜色不变

时间:2018-12-26 08:51:01

标签: android android-textinputlayout

我正在尝试更改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>

我的布局
enter image description here

1 个答案:

答案 0 :(得分:0)

新材料库有点令人困惑。到目前为止,com.google.android.material:material:1.1.0-alpha02中的textColorHint无效,但是hintTextApperance正常工作,这必须是一种可以定义文本属性的样式。