EditText没有底部的行

时间:2014-12-26 11:59:42

标签: android android-layout android-edittext

我想创建我的编辑文本字段,而不是底部的行,就像在这张图片中一样 enter image description here 现在我的编辑文本看起来像这样 enter image description here 我该怎么办?

4 个答案:

答案 0 :(得分:43)

<EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@null"/>

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

答案 1 :(得分:6)

尝试以下代码: -

android:background="@null"

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

上面的代码确实透明了你的edittext背景。

答案 2 :(得分:3)

您可以使用

获取transparent background EditText
 android:background="#00000000" 

 android:background="@null"

您可以创建custom drawable.xml,然后点击drawable transparent并使用

android:background="@drawable/customdrawable"

答案 3 :(得分:0)

您可以将EditText设置为具有自定义透明可绘制或仅使用

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

它正在运作。