在文本字段旁边显示图标

时间:2020-02-10 07:08:27

标签: android android-layout mdc-components

我需要在文本字段旁边显示一个图标,例如此屏幕快照中的个人和电话图标(sourceenter image description here

Android上是否有用于执行此操作的组件,或者我是否必须手动对齐图标和文本字段,例如约束布局?请注意,我需要文本字段旁边的图标(如sreenshot上所示),而不是它的内部。

8 个答案:

答案 0 :(得分:2)

我希望这对您有用。

您可以使用Relative LayoutLinear Layout创建以上布局。

您需要使用ImageView和Editext来创建布局。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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">


    <ImageView
        android:id="@+id/imageView"
        android:layout_width="40dp"
        android:layout_height="40dp"
        android:layout_marginStart="20dp"
        android:layout_marginTop="25dp"
        android:contentDescription="Person Name"
        android:layout_alignParentStart="true"
        android:src="@drawable/ic_action_name" />

    <EditText
        android:id="@+id/editText"
        android:layout_width="match_parent"
        android:layout_height="60dp"
        android:layout_marginStart="20dp"
        android:layout_marginTop="16dp"
        android:layout_marginEnd="20dp"
        android:layout_toEndOf="@id/imageView"
        android:background="@drawable/border"
        android:ems="10"
        android:hint="Name"
        android:paddingStart="10dp"
        android:paddingEnd="10dp"
        android:inputType="textPersonName"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        android:layout_marginBottom="10dp"/>
</RelativeLayout>

可绘制边框:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">

    <solid
        android:color="#ffffff"/>
    <stroke
        android:width="1dp"
        android:color="#222222"></stroke>

    <corners
        android:radius="10dp"></corners>

</shape>

答案 1 :(得分:1)

它不在图像视图中的编辑文本字段中,您可以使用imageview在textView之前设置这些图标,如果要将图像显示到textView中,则可以使用drawableSart到xml

答案 2 :(得分:1)

否,除了在编辑文本上使用“ drawable_left”属性外,没有默认组件。往往看起来永远不会像预期的那样。

目前针对这种情况的最佳做法是手动将ImageView添加到布局中。

单个输入的一般xml布局如下所示。但是,还需要做更多工作来设置编辑文本的样式,以使其看起来像图像。

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">
    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/ic_person"
        android:layout_gravity="center_vertical"/>
    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>
</LinearLayout>

答案 3 :(得分:1)

您可以使用:

您的活动

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center_vertical">

<ImageButton
    android:layout_width="0dp"
    android:layout_height="match_parent"
    android:layout_weight="1"
    android:background="?attr/selectableItemBackgroundBorderless"
    android:src="@drawable/ic_phone" --> phone drawable
    android:tint="@color/gray"/>

<EditText
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_margin="5dp"
    android:layout_weight="9"
    android:background="@drawable/et_style" --> this is custom drawable for EditText
    android:padding="20dp" />

et_style.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">


<solid android:color="@color/white" />
<corners android:radius="10dp" />
<stroke
    android:width="1dp"
    android:color="@color/gray" />

enter image description here

答案 4 :(得分:1)

将此内容用于EditText

android:drawableLeft="@drawable/card"

答案 5 :(得分:1)

将以下代码复制粘贴到您的xml文件中:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">
    <LinearLayout
        android:id="@+id/linear1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:layout_margin="10dp">

        <ImageView
            android:id="@+id/imgPerson"
            android:layout_width="45dp"
            android:layout_height="45dp"
            android:src="@drawable/ic_person"
            android:layout_margin="5dp"
            android:padding="5dp"></ImageView>
        <EditText
            android:id="@+id/namePerson"
            android:layout_width="match_parent"
            android:layout_height="45dp"
            android:hint="Name"
            android:layout_margin="5dp"
            android:background="@drawable/box_style"
            android:padding="8dp"></EditText>
    </LinearLayout>

    <LinearLayout
        android:id="@+id/linear2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:weightSum="3"
        android:layout_margin="10dp">

        <ImageView
            android:id="@+id/imgPhone"
            android:layout_width="0dp"
            android:layout_weight="0.5"
            android:layout_height="45dp"
            android:src="@drawable/ic_phone"
            android:layout_margin="5dp"
            android:padding="5dp"></ImageView>
        <EditText
            android:id="@+id/phoneNumber"
            android:layout_width="0dp"
            android:layout_weight="1.75"
            android:layout_height="45dp"
            android:hint="Phone"
            android:layout_margin="5dp"
            android:background="@drawable/box_style"
            android:padding="8dp"></EditText>
        <Spinner
            android:id="@+id/areaCode"
            android:layout_width="wrap_content"
            android:layout_height="45dp"
            android:layout_weight="0.75"
            android:layout_margin="5dp"
            android:background="@drawable/box_style"
            android:padding="8dp"></Spinner>
    </LinearLayout>

</LinearLayout>

对于方框样式,请将以下代码复制粘贴到可绘制的xml文件中:

<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">

    <stroke
        android:width="1.5dp"
        android:color="@android:color/darker_gray" />

    <corners
        android:radius="4dp" />

</shape>

干杯。编码愉快

答案 6 :(得分:1)

不幸的是,没有任何组件可以满足您的期望,唯一的方法是手动将ImageView与TextInputLayout对齐。我认为,最好的方法是使用ConstraintLayout。 您可以阅读有关ConstraintLayout here

的信息。

答案 7 :(得分:0)

Android中没有默认组件,就像您在快照中提到的那样,但是为此,您可以尝试使用这种方法ConstraintLayoutTesting.xml

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">


    <ImageView
        android:id="@+id/imgPerson"
        android:layout_width="wrap_content"
        android:layout_height="0dp"
        android:layout_marginStart="15dp"
        android:layout_marginLeft="15dp"
        android:layout_marginTop="15dp"
        android:layout_marginEnd="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginBottom="30dp"
        android:padding="5dp"
        android:src="@drawable/icon_storage"
        android:tint="@color/colorAccent"
        app:layout_constraintBottom_toTopOf="@+id/imgPhone"
        app:layout_constraintEnd_toStartOf="@+id/edtNamePerson"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <EditText
        android:id="@+id/edtNamePerson"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_marginTop="15dp"
        android:layout_marginEnd="14dp"
        android:layout_marginRight="14dp"
        android:layout_marginBottom="30dp"
        android:background="@drawable/round_corner_border"
        android:hint="Name"
        android:padding="8dp"
        app:layout_constraintBottom_toTopOf="@+id/spAreaCode"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toEndOf="@+id/imgPerson"
        app:layout_constraintTop_toTopOf="parent" />


    <ImageView
        android:id="@+id/imgPhone"
        android:layout_width="wrap_content"
        android:layout_height="0dp"
        android:layout_marginStart="15dp"
        android:layout_marginLeft="15dp"
        android:layout_marginEnd="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginBottom="596dp"
        android:padding="5dp"
        android:src="@drawable/icon_authentication"
        android:tint="@color/colorAccent"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toStartOf="@+id/edtPhoneNumber"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/imgPerson" />

    <EditText
        android:id="@+id/edtPhoneNumber"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_marginEnd="10dp"
        android:layout_marginRight="10dp"
        android:background="@drawable/round_corner_border"
        android:hint="Phone"
        android:padding="8dp"
        app:layout_constraintBottom_toBottomOf="@+id/imgPhone"
        app:layout_constraintEnd_toStartOf="@+id/spAreaCode"
        app:layout_constraintStart_toEndOf="@+id/imgPhone"
        app:layout_constraintTop_toTopOf="@+id/imgPhone" />

    <Spinner
        android:id="@+id/spAreaCode"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:layout_marginEnd="14dp"
        android:layout_marginRight="14dp"
        android:layout_marginBottom="596dp"
        android:background="@drawable/round_corner_border"
        android:padding="8dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toEndOf="@+id/edtPhoneNumber"
        app:layout_constraintTop_toBottomOf="@+id/edtNamePerson" />


</androidx.constraintlayout.widget.ConstraintLayout>

round_corner_border.xml

<?xml version="1.0" encoding="utf-8"?>
<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">

    <stroke
        android:width="1dp"
        android:color="@android:color/darker_gray" />

    <corners
        android:radius="5dp" />

</shape>

此外,我还附上了我的测试代码的屏幕截图,以便您有一个更好的主意。

enter image description here