我正在尝试使用材质样式自定义TextInputLayout.我设法将聚焦状态设置为我想要的颜色:
运用
<com.google.android.material.textfield.TextInputLayout style="@style/LoginTextInputLayoutStyle" android:theme="@style/LoginTextInputLayoutStyle" android:textColorHint="#fff" app:BoxStrokeColor="#fff" .....> <EditText ...
风格在哪里:
<style name="LoginTextInputLayoutStyle" parent="Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense"> <item name="colorAccent">#fff</item> </style>
但是当textinput没有聚焦时,我得到了这样的表情:
如何将黑线的颜色也改为白色.谢谢
解决方法
使用此样式应用边框颜色和边框宽度,如下所示:
<style name="LoginTextInputLayoutStyle" parent="Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense"> <item name="BoxStrokeColor">#fff</item> <item name="BoxStrokeWidth">2dp</item> </style>
在colors.xml文件中添加以下行,该文件将覆盖TextInputLayout的默认颜色
<color name="mtrl_textinput_default_Box_stroke_color" tools:override="true">#fff</color>