欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

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

程序员文章站 2024-02-21 16:30:52
前言 相信大家都知道,当使用appcompatedittext(edit text)时,默认的下划线是跟随系统的#ff4081的颜色值的,通过改变这个值可以改变所有的颜色...

前言

相信大家都知道,当使用appcompatedittext(edit text)时,默认的下划线是跟随系统的#ff4081的颜色值的,通过改变这个值可以改变所有的颜色样式

有时候你想单独定义某一个界面的颜色样式,则可以这样做:

1.在你的build.gradle中添加最新的appcompat库

dependencies { 
 compile 'com.android.support:appcompat-v7:x.x.x' // x.x.x 为最新的版本号
 }

2.让你的activity继承android.support.v7.app.appcompatactivity

public class mainactivity extends appcompatactivity {
 ...
}

3.在任何layout.xml文件中声明您的edittext

<edittext 
 android:layout_width="match_parent" 
 android:layout_height="wrap_content" 
 android:hint="hint text"/>

4.在styles.xml文件中声明自定义样式

<style name="myedittext" parent="theme.appcompat.light"> 
 <item name="colorcontrolnormal">@color/indigo</item> 
 <item name="colorcontrolactivated">@color/pink</item>
</style>

5.通过android:theme属性将此样式应用于您的edittext

<edittext 
 android:layout_width="match_parent" 
 android:layout_height="wrap_content" 
 android:hint="hint text" 
 android:theme="@style/myedittext"/>

效果如下:

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

总结

以上就是关于android更改edittext下划线颜色样式的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流。