编辑两侧带有图标的文本

Edit text with icons on both sides

我必须使用其中的两个 Font Awesome 图标来编辑文本:

我的问题是添加这些图标(左和右),我该怎么做?

这是我的 custom_search.xml 可绘制文件:

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

您可以在 xml 中使用 drawableLeftdrawabelRight,如下所示:

<EditText
    android:id="@+id/et_drawables_added"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:drawableRight="@drawable/ic_launcher"
    android:drawableLeft="@drawable/ic_launcher"" />

还有更多选项,例如drawableTopdrawableBottom。您可以随意尝试。

你可以做到:

 <EditText 

    android:drawableLeft="your drawable"
    android:drawableRight="your drawable"
    />

希望这会有所帮助。