禁用editText时,android TextInputLayout的提示颜色不会改变

时间:2019-11-16 11:26:15

标签: android xml android-edittext

我在TextInputLayout中有一个EditText。 EditText被禁用。 我尝试在XML和片段类中设置提示颜色,但这没有用。

布局文件:

<com.google.android.material.textfield.TextInputLayout
        style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="20dp"
        android:hint="@string/entity_field_title">

        <com.google.android.material.textfield.TextInputEditText
            android:id="@+id/titleET"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textColorHint="@color/md_black_1000" />

</com.google.android.material.textfield.TextInputLayout>

更新: 问题是我还在代码中禁用了TextInputLayout,因此提示始终是灰色的。

0 个答案:

没有答案