EditText without line at bottom
我想创建我的编辑文本字段,而不是底部的行,就像在这张图片中一样
现在我的编辑文本看起来像这样
我该怎么做?
1 2 3 4 | <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@null"/> |
您可以通过将背景设置为null来实现
尝试以下代码: -
1 | android:background="@null" |
要么
1 | android:background="@android:color/transparent" |
上面的代码确实透明了你的edittext背景。
您可以使用
1 | android:background="#00000000" |
要么
1 | android:background="@null" |
要么
您可以创建
1 | android:background="@drawable/customdrawable" |
您可以将EditText设置为具有自定义透明可绘制或仅使用
1 | android:background="@android:color/transparent". |
它正在发挥作用。