调整drawable以适合EditText

问题描述 投票:-1回答:1

我有以下布局:

enter image description here

我想在我的textedit中设置一个drawable,如下所示:

enter image description here

当我转到我的EditText并尝试设置android:drawableEnd="@drawable/money"时出现问题,这种情况发生了:

enter image description here

我该如何调整这个可绘制的?

android android-edittext drawable
1个回答
0
投票

试试这种方式

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/round_textview_bg"
        android:gravity="center"
        android:layout_marginStart="20dp"
        android:layout_marginEnd="20dp"
        android:orientation="horizontal"
        android:padding="10dp">

        <ImageView
            android:layout_width="30dp"
            android:layout_height="30dp"
            android:src="@drawable/image_info" />

        <EditText
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:background="@android:color/transparent"
            android:padding="5dp" />

        <ImageView
            android:layout_width="30dp"
            android:layout_height="30dp"
            android:src="@drawable/image_info" />

    </LinearLayout>

</LinearLayout>

OUTPUT

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.