<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="48dp"
|
android:background="#88888888">
|
|
<View
|
android:id="@+id/background"
|
android:layout_width="match_parent"
|
android:layout_height="50dp"
|
android:background="#ff0000ff"
|
android:visibility="gone" />
|
|
<LinearLayout
|
android:id="@+id/ll_first_page_search"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center_horizontal"
|
android:orientation="vertical"
|
android:padding="5dp">
|
|
<LinearLayout
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:orientation="horizontal">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center_horizontal"
|
android:layout_marginLeft="20dp"
|
android:layout_marginRight="5dp"
|
android:drawableLeft="@mipmap/ic_main_search"
|
android:drawablePadding="5dp"
|
android:gravity="center"
|
android:padding="10dp" />
|
|
<TextView
|
android:id="@+id/tv_search_content"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:gravity="center_vertical"
|
android:textColorHint="@color/white" />
|
</LinearLayout>
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:layout_marginLeft="20dp"
|
android:layout_marginRight="20dp"
|
android:background="@color/white" />
|
</LinearLayout>
|
</RelativeLayout>
|