androidedittext去掉下划线
时间: 2023-04-23 21:05:52 浏览: 2314
Android中EditText如何去除边框添加下划线
5星 · 资源好评率100%
要去掉Android EditText的下划线,可以使用以下方法:
1. 在XML布局文件中,将EditText的属性android:background设置为透明色或其他颜色,例如:
```
<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/transparent" />
```
2. 在Java代码中,使用EditText的方法setBackgroundColor()将背景颜色设置为透明色或其他颜色,例如:
```
EditText editText = findViewById(R.id.editText);
editText.setBackgroundColor(Color.TRANSPARENT);
```
这样就可以去掉EditText的下划线了。
阅读全文