values->style.xml 添加
赞
踩
安卓EditText编辑框底部红线如何解决?
1. 想要去除底部红线,在<EditText 内添加下面一句
android:background="@null"
2.想要将底部红线换成其他颜色,
第一步,到style.xml文件,新建自定义EditText控件style
res->values->style.xml 添加
- <style name="MyEditText" parent="Theme.AppCompat.Light">
- <item name="colorControlNormal">@android:color/white</item>
- <item name="colorControlActivated">@android:color/holo_blue_dark</item>
- </style>
第二步,在布局中的EditText中添加theme属性
android:theme="@style/MyEditText"
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。