android的EditText下划线
时间: 2024-01-08 08:02:25 浏览: 130
EditText带下划线
在Android中,可以通过设置EditText的背景Drawable来实现下划线效果。具体步骤如下:
1. 在res/drawable文件夹下创建一个drawable资源文件,命名为edittext_underline.xml,代码如下:
```xml
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="@android:color/transparent" />
<stroke
android:width="1dp"
android:color="@android:color/black" />
</shape>
```
其中,solid标签指定填充颜色为透明,stroke标签指定边框宽度为1dp,颜色为黑色。
2. 在EditText控件中设置背景Drawable为上面创建的资源文件,代码如下:
```xml
<EditText
android:id="@+id/edit_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/edittext_underline" />
```
这样就可以在EditText控件下方显示一条黑色的下划线了。如果需要修改下划线颜色或粗细,可以修改edittext_underline.xml文件中的颜色和宽度值。
阅读全文