Android 圆角搜索框
2018-11-22 本文已影响0人
人心所向便是阳光
rounded_corner_search_box.xml(xml布局)
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#80858175"/>
<stroke android:width="1dp" android:color="#fefefe"/>
<corners android:radius="20dp"/>
<padding
android:top="8dp"
android:right="8dp"
android:bottom="8dp"
android:left="8dp"
/>
</shape>
android:background="@drawable/rounded_corner_search_box"
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/rounded_corner_search_box"/>