我想创建我的编辑文本字段,而不是底部的行,就像在这张图片中一样 现在我的编辑文本看起来像这样 我该怎么办?
答案 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".
它正在运作。