美文网首页Android技术集
Android 隐藏EditText的下划线

Android 隐藏EditText的下划线

作者: Swift社区 | 来源:发表于2017-09-12 10:46 被阅读20次

有的时候需要隐藏掉EditText的边框和下划线,代码为:

<EditText
                android:id="@+id/phonetext"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:layout_marginLeft="15dp"
                android:layout_gravity="center_vertical"
                android:inputType="number"
                android:hint="请输入短信验证码"
                android:background="@null"/>

主要代码为:

android:background="@null"

希望可以帮助大家
如果哪里有什么不对或者不足的地方,还望读者多多提意见或建议
Android技术交流群:591625129

相关文章

网友评论

    本文标题:Android 隐藏EditText的下划线

    本文链接:https://www.haomeiwen.com/subject/vcfcsxtx.html