我必须在其中创建一个带有两个Font Awesome Icons的编辑文本:
我的问题是添加这些图标(左和右),我该怎么办?
这是我的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>
答案 0 :(得分:7)
您可以在xml中使用drawableLeft
和drawabelRight
,如下所示:
<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"" />
还有更多选项,例如drawableTop
,drawableBottom
。无论如何你都可以试试。
答案 1 :(得分:1)
你可以这样做:
<EditText
android:drawableLeft="your drawable"
android:drawableRight="your drawable"
/>
希望这会有所帮助。