<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:orientation="vertical"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
tools:context=".patient.ui.article.AuditListActivity">
|
|
<include layout="@layout/toolbar"/>
|
<LinearLayout
|
android:layout_marginLeft="16dp"
|
android:layout_marginRight="16dp"
|
android:layout_marginTop="16dp"
|
android:layout_marginBottom="16dp"
|
android:orientation="horizontal"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content">
|
<Button
|
android:id="@+id/btn_auditing"
|
android:textSize="@dimen/text_size_15"
|
android:textColor="@color/color_gary30"
|
android:text="审核中"
|
android:background="@drawable/shape_button_gray"
|
android:layout_marginRight="10dp"
|
android:layout_weight="1"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content">
|
</Button>
|
<Button
|
android:id="@+id/btn_unPass"
|
android:textSize="@dimen/text_size_15"
|
android:textColor="@color/color_gary30"
|
android:text="审核未通过"
|
android:background="@drawable/shape_button_gray"
|
android:layout_marginRight="10dp"
|
android:layout_weight="1"
|
android:layout_width="0dp"
|
android:layout_height="wrap_content">
|
</Button>
|
</LinearLayout>
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
android:id="@+id/refreshLayout"
|
android:layout_width="match_parent"
|
android:layout_weight="1"
|
android:layout_height="0dp">
|
|
<androidx.recyclerview.widget.RecyclerView
|
android:layout_marginLeft="16dp"
|
android:layout_marginRight="16dp"
|
android:id="@+id/rv_questionList"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"/>
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
|
</LinearLayout>
|