隐藏android中EditText的下划线-by:nixs
程序员文章站
2022-06-01 13:42:04
...
有的时候需要隐藏掉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" />
效果图:
推荐阅读
-
Android中系统默认输入法设置的方法(输入法的显示和隐藏)
-
Android中EditText光标在4.0中的bug及解决方法
-
Android Dialog中软键盘的显示与隐藏的示例
-
Android中EditText+Button组合导致输入板无法收起的原因分析及解决办法
-
Android实现EditText中添加和删除bitmap的方法
-
Android点击EditText文本框之外任何地方隐藏键盘的解决办法
-
Android中实现密码的隐藏和显示的示例
-
Android编程开发之EditText中不输入特定字符会显示相关提示信息的方法
-
Android中隐藏状态栏和标题栏的方法汇总(隐藏状态栏、标题栏的五种方法)
-
Android Dialog中软键盘的显示与隐藏的示例