隐藏android中EditText的下划线-by:nixs
时间:2021-06-01 19:15:10
收藏:0
阅读:33
有的时候需要隐藏掉EditText的边框和下划线,代码为:
主要是这一栏:
android:background="@null"
- ?
<EditText
style="?android:attr/textViewStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@null"
android:hint="输入用户名"
android:paddingBottom="5dip"
android:paddingTop="5dip" />
效果图:
?
原文:https://blog.51cto.com/u_4955660/2842806
评论(0)