91 lines
3.2 KiB
XML
91 lines
3.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/white"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:padding="10dp">
|
|
|
|
<EditText
|
|
android:id="@+id/et_law_name"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:background="@drawable/shp_rectangle_gray"
|
|
android:gravity="left"
|
|
android:hint="请输入法律法规名称"
|
|
android:padding="5dp"
|
|
android:textColor="@color/black"
|
|
android:textSize="15sp"
|
|
tools:text="" />
|
|
|
|
<Button
|
|
android:id="@+id/btn_search"
|
|
android:layout_width="60dp"
|
|
android:layout_height="30dp"
|
|
android:layout_margin="0dp"
|
|
android:background="@drawable/sel_btn_submit"
|
|
android:padding="0dp"
|
|
android:text="搜索"
|
|
android:textColor="@color/white" />
|
|
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:layout_marginTop="5dp"
|
|
android:background="@color/gray_bg" />
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginTop="5dp">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
<ProgressBar
|
|
android:id="@+id/pb_loading"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:indeterminateBehavior="repeat"
|
|
android:indeterminateDrawable="@drawable/anim_loading" />
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_empty"
|
|
android:layout_width="100dp"
|
|
android:layout_height="100dp"
|
|
android:layout_centerInParent="true"
|
|
android:background="@drawable/ic_empty_data" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_error_hint"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:clickable="true"
|
|
android:textColor="@color/black"
|
|
tools:text="加载数据失败" />
|
|
</LinearLayout>
|
|
|
|
<com.jcodecraeer.xrecyclerview.XRecyclerView
|
|
android:id="@+id/xlv_com_lib"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp" />
|
|
</RelativeLayout>
|
|
|
|
|
|
</LinearLayout> |