编辑文本底部没有线条

问题描述 投票:0回答:4

我想让我的编辑文本字段没有底部的线条,如图所示 enter image description here 现在我的编辑文本看起来像这样 enter image description here 我该怎么办?

android android-layout android-edittext
4个回答
54
投票
<EditText
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@null"/>

您可以通过将背景设置为空来实现


6
投票

尝试下面的代码:-

android:background="@null"

android:background="@android:color/transparent"

上面的代码使您的编辑文本背景透明。


3
投票

您可以使用

 获得 
transparent background
 中的 
EditText

 android:background="#00000000" 

 android:background="@null"

您可以创建

custom drawable.xml
,然后只需制作
drawable transparent
并使用

android:background="@drawable/customdrawable"

0
投票

android:背景=“@null”

© www.soinside.com 2019 - 2024. All rights reserved.