<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:id="@+id/root_layout"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@color/page_bg"
|
android:focusable="true"
|
android:focusableInTouchMode="true"
|
android:orientation="vertical">
|
<EditText
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:id="@+id/et_search"
|
android:layout_marginTop="1dp"
|
android:background="@drawable/bg_search_2"
|
android:textSize="13sp"
|
android:textColor="@color/colorDark"
|
android:paddingTop="14dp"
|
android:paddingBottom="14dp"
|
android:hint="搜索"
|
android:paddingStart="24dp"
|
android:imeOptions="actionSearch"
|
android:singleLine="true"
|
android:inputType="text"
|
android:paddingEnd="24dp"
|
android:drawablePadding="4dp"
|
android:visibility="gone"
|
android:drawableStart="@mipmap/icon_magnifier"/>
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="8dp"
|
android:visibility="gone"
|
android:id="@+id/view"
|
android:background="@color/page_bg"/>
|
<cn.sinata.xldutils.view.SwipeRefreshRecyclerLayout
|
android:id="@+id/swipeRefreshLayout"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent" />
|
|
</LinearLayout>
|