我正在使用AutoCompleteEditText
,我希望将其显示为
但我不知道会是怎样的。
答案 0 :(得分:2)
执行此操作的一般方法是在http://developer.android.com/guide/developing/tools/draw9patch.html使用9-patch更多信息。但在这种情况下,您可以使用更简单的解决方案。
在你的主要版面
<RelativeLayout android:layout_width="fill_parent"
android:id="@+id/searchfieldlayout" android:layout_height="46dp"
android:background="#0000ff">
<RelativeLayout android:layout_width="fill_parent"
android:layout_height="32dp" android:layout_centerInParent="true"
android:layout_marginLeft="7dp" android:layout_marginRight="7dp"
android:background="@drawable/search_gradient">
<ImageView android:layout_width="wrap_content"
android:layout_height="wrap_content" android:id="@+id/search_icon"
android:layout_alignParentLeft="true" android:layout_centerVertical="true"
android:layout_marginLeft="10dp" android:background="@drawable/search_icon">
</ImageView>
<EditText android:layout_width="fill_parent" android:id="@+id/searchfield"
android:paddingTop="5dp" android:textSize="13dp" android:textColor="#ffffffff"
android:selectAllOnFocus="true" android:paddingRight="10dp"
android:paddingBottom="5dp" android:paddingLeft="10dp"
android:layout_height="fill_parent" android:layout_toRightOf="@+id/search_icon"
android:background="@drawable/transparent_background"
android:layout_marginLeft="7dp" android:inputType="text" android:imeOptions="actionGo">
</EditText>
</RelativeLayout>
</RelativeLayout>
search_gradien.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient android:startColor="#2b0139" android:endColor="#3e1550" android:angle="270" />
<corners android:radius="6dp" />
</shape>
transparent_background.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient android:startColor="#00000000" android:endColor="#00000000"
android:angle="270" />
</shape>
根据需要修复颜色或尺寸。