请问如何使用形状制作这个自定义编辑文本?
http://www.noelshack.com/2015-15-1428418773-form3.png
我试过android:drawableLeft
但结果不匹配
矩形形状.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<solid android:color="#3498db" />
</shape>
形状.xml
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:drawable="@drawable/rectangle_shape"/>
<item android:drawable="@drawable/user"/>
</layer-list>