我在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,因此提示始终是灰色的。