| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/white_f8f8f8"
- android:fitsSystemWindows="true"
- android:orientation="vertical">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:orientation="horizontal">
- <ImageView
- android:id="@+id/iv_goback"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:padding="16dp"
- android:src="@mipmap/icon_title_back" />
- <LinearLayout
- android:id="@+id/ll_search"
- android:layout_width="0dp"
- android:layout_weight="1"
- android:layout_height="32dp"
- android:layout_marginRight="13dp"
- android:background="@drawable/shape_line_fe0032_15dp"
- android:gravity="center_vertical"
- android:orientation="horizontal">
- <EditText
- android:id="@+id/et_search"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginLeft="13dp"
- android:background="@null"
- android:hint="搜索"
- android:textSize="13sp"
- android:textColor="@color/black_333333" />
- </LinearLayout>
- <TextView
- android:id="@+id/tv_click_search"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginRight="16dp"
- android:gravity="center"
- android:text="@string/search"
- android:textColor="@color/black_333333"
- android:textSize="14sp" />
- </LinearLayout>
- <include
- android:id="@+id/search_records"
- layout="@layout/search_history_is_recommended"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
- <include
- android:id="@+id/search_list"
- layout="@layout/search_tab_list2"
- android:visibility="gone"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- />
- </LinearLayout>
|