26 lines
874 B
XML
26 lines
874 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<layout xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/ll_search_layout"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="48dp"
|
||
|
android:layout_margin="10dp"
|
||
|
android:background="@drawable/shp_white_5_radius"
|
||
|
android:gravity="center"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<ImageView
|
||
|
android:layout_width="32dp"
|
||
|
android:layout_height="32dp"
|
||
|
android:src="@drawable/ic_search_gray" />
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginLeft="8dp"
|
||
|
android:gravity="center"
|
||
|
android:text="搜索"
|
||
|
android:textSize="18sp" />
|
||
|
</LinearLayout>
|
||
|
</layout>
|