在edittext中添加背景会破坏布局

时间:2018-12-26 10:20:06

标签: android xml android-layout

我正在尝试设计输入文本视图。这是我使用的代码。

   <android.support.v7.widget.CardView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:cardElevation="7dp"
        android:layout_margin="10dp"
        app:cardCornerRadius="22dp"
        android:backgroundTint="#ff7171">

        <AutoCompleteTextView
            android:id="@+id/email"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:hint="@string/prompt_email"
            android:inputType="textEmailAddress"
            android:maxLines="1"
            android:singleLine="true"/>

    </android.support.v7.widget.CardView>

我试图实现的目标是在布局下形成圆角和阴影。这是此代码的输出:

enter image description here

这给了我2个缺点。首先,我不能对此使用浮动标签。这是低优先级。让我烦恼的是:下划线。我正在尝试将其删除。人们建议的常见方式是使用:

android:background="@null"

但是,当我使用它时,输出如下所示:

enter image description here

我该如何克服这个问题?

2 个答案:

答案 0 :(得分:1)

这可能会帮助您:

    <android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:contentPadding="16dp"
    android:backgroundTint="#ff7171"
    app:cardCornerRadius="16dp">

    <AutoCompleteTextView
        android:id="@+id/email"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@null"
        android:hint="@string/prompt_email"
        android:inputType="textEmailAddress"
        android:maxLines="1"
        android:singleLine="true" />
    </android.support.v7.widget.CardView>

结果是:

Here is the result

答案 1 :(得分:1)

在drawable文件夹下创建一个名为background的文件,并粘贴以下代码。

<?xml version="1.0" encoding="utf-8"?>
<!--  res/drawable/background.xml -->
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" android:padding="10dp">
    <solid android:color="#00000000"/>
    <stroke
        android:width="1dp"
        android:color="#00000000"/>
    <corners
        android:bottomRightRadius="15dp"
        android:bottomLeftRadius="15dp"
        android:topLeftRadius="15dp"
        android:topRightRadius="15dp"/>
</shape>

然后将自动完成文本视图重写为

<AutoCompleteTextView
        android:id="@+id/email"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/background.xml"
        android:hint="@string/prompt_email"
        android:inputType="textEmailAddress"
        android:maxLines="1"
        android:singleLine="true" />