IOS
hefeixia
2021-02-18 49f3c1374873f73dbde2983ca0fcf1fb10bfedbf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?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>