隐藏android中EditText的下划线

  • Post author:
  • Post category:其他


有的时候需要隐藏掉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" />

效果图:

这里写图片描述

欢迎大家关注

AngularFlow

,让你的思维流动起来 !



版权声明:本文为zhuzhiqiang_zhu原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。