android – 更改TextInputLayout轮廓颜色

前端之家收集整理的这篇文章主要介绍了android – 更改TextInputLayout轮廓颜色前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用材质样式自定义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>

从这个link获取有关样式的其他详细信息

在colors.xml文件添加以下行,该文件将覆盖TextInputLayout的默认颜色

<color name="mtrl_textinput_default_Box_stroke_color" tools:override="true">#fff</color>
原文链接:https://www.f2er.com/android/314367.html

猜你在找的Android相关文章