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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools">
 
    <android.support.constraint.ConstraintLayout
        android:id="@+id/cl_toolbar"
        android:visibility="visible"
        android:layout_width="match_parent"
        android:layout_height="46dp"
        android:background="@color/colorPrimary"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">
 
        <ImageView
            android:id="@+id/img_back"
            android:layout_width="40dp"
            android:layout_height="0dp"
            android:padding="12dp"
            android:clickable="true"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintBottom_toBottomOf="parent"
            android:src="@drawable/icon_back_white"
            android:focusable="true" />
        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:textColor="@color/white"
            android:gravity="center"
            android:singleLine="true"
            android:textSize="16sp"
            android:text="图片取证"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintBottom_toBottomOf="parent"/>
        <TextView
            android:id="@+id/tv_menu"
            android:layout_width="wrap_content"
            android:layout_height="0dp"
            tools:text="2022年"
            android:gravity="center"
            android:singleLine="true"
            android:drawableEnd="@drawable/ic_baseline_arrow_drop_down_24"
            android:textColor="@color/white"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            android:src="@drawable/selector_start_end_task" />
    </android.support.constraint.ConstraintLayout>
 
    <android.support.v7.widget.RecyclerView
        android:id="@+id/rv_month"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_constraintTop_toBottomOf="@id/cl_toolbar"
        tools:listitem="@layout/item_single_text"
        tools:itemCount="6"
        app:layoutManager="android.support.v7.widget.LinearLayoutManager"
        android:orientation="horizontal"/>
 
    <include
        android:id="@+id/layout_v"
        layout="@layout/layout_tab_viewpager"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        app:layout_constraintTop_toBottomOf="@id/rv_month"
        app:layout_constraintBottom_toTopOf="@id/cl_submit"/>
 
    <include
        android:id="@+id/layout_e"
        android:visibility="gone"
        layout="@layout/layout_empty_view"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        app:layout_constraintTop_toBottomOf="@id/rv_month"
        app:layout_constraintBottom_toBottomOf="parent" />
 
    <android.support.constraint.ConstraintLayout
        android:id="@+id/cl_submit"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_constraintBottom_toBottomOf="parent"
        android:background="@android:color/white"
        android:elevation="@dimen/dimen4"
        tools:ignore="UnusedAttribute"
        android:padding="@dimen/dimen8">
 
        <TextView
            android:id="@+id/tv_selected"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            tools:text="已选(0/3)"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintStart_toStartOf="parent"/>
 
        <TextView
            android:id="@+id/btn_fail"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:layout_constraintEnd_toStartOf="@id/btn_pass"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintBottom_toBottomOf="parent"
            style="@style/TextButtonStyle.DialogNeutral"
            android:foreground="?attr/selectableItemBackground"
            android:text="清空"
            android:textSize="12sp"
            android:layout_marginEnd="@dimen/dimen2"
            android:elevation="@dimen/dimen4"
            android:textStyle="bold">
        </TextView>
 
        <TextView
            android:id="@+id/btn_pass"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintBottom_toBottomOf="parent"
            style="@style/TextButtonStyle.DialogPositive"
            android:foreground="?attr/selectableItemBackground"
            android:text="提交"
            android:textSize="12sp"
            android:textStyle="bold">
        </TextView>
 
    </android.support.constraint.ConstraintLayout>
 
</android.support.constraint.ConstraintLayout>