android 底部不带行的编辑文本

brjng4g3  于 2023-10-14  发布在  Android
关注(0)|答案(3)|浏览(93)

我想让我的编辑文本字段没有底部的线条,就像在这张图片

现在我的编辑文本看起来像这样

我怎么做?

yhqotfr8

yhqotfr81#

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

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

ycl3bljg

ycl3bljg2#

试试下面的代码:-

android:background="@null"

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

上面的代码做透明你的edittext背景。

sdnqo3pr

sdnqo3pr3#

您可以使用以下命令获取EditTexttransparent background

android:background="#00000000"

android:background="@null"


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

android:background="@drawable/customdrawable"

相关问题