美文网首页
Android 更改EditText下划线的颜色样式

Android 更改EditText下划线的颜色样式

作者: 中王之王 | 来源:发表于2018-10-22 09:40 被阅读12次

    套用theme,设置好theme后套用既能更改下环线颜色

    <style name="MyEditText" parent="Theme.AppCompat.Light"> <item name="colorControlNormal">@color/indigo</item> <item name="colorControlActivated">@color/pink</item> </style>

    <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="Hint text" android:theme="@style/MyEditText"/>

    相关文章

      网友评论

          本文标题:Android 更改EditText下划线的颜色样式

          本文链接:https://www.haomeiwen.com/subject/rwywzftx.html