有的时候需要隐藏掉EditText的边框和下划线,代码为:
关键代码:
android:background="@null"
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@null"
android:hint="输入用户名"
android:paddingBottom="5dip"
android:paddingTop="5dip" />
这里就没有自带的红色的下划线了哦