riku
2025-07-02 3013b813e5df6977c0be921928f73b1a3adde290
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
<?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:orientation="vertical"
    android:background="@color/lightGray">
 
    <include layout="@layout/layout_toolbar_2" />
 
<!--    <android.support.v4.widget.NestedScrollView-->
<!--        android:layout_width="match_parent"-->
<!--        android:layout_height="match_parent">-->
        <android.support.constraint.ConstraintLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:paddingTop="@dimen/dimen4">
 
            <TextView
                android:id="@+id/txt_title"
                android:visibility="gone"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginStart="@dimen/dimen16"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toTopOf="parent"
                android:textColor="@color/main_color_1"
                android:textStyle="bold"
                android:textSize="@dimen/textSize_notes"
                android:text="夜施文件统计"/>
 
            <LinearLayout
                android:id="@+id/ll_total"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:orientation="vertical"
                android:layout_marginStart="@dimen/dimen16"
                android:layout_marginEnd="@dimen/dimen4"
                android:gravity="center"
                android:background="@drawable/shape_white"
                app:layout_constraintTop_toBottomOf="@id/txt_title"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintEnd_toStartOf="@id/ll_signed">
 
                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    style="@style/TextStyle.Category"
                    android:layout_gravity="start"
                    android:text="总签发文件"/>
 
                <TextView
                    android:id="@+id/txt_total_count"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    style="@style/TextStyle.Category.Item"
                    android:layout_marginTop="@dimen/dimen8"
                    android:layout_marginBottom="@dimen/dimen8"
                    android:textSize="@dimen/title_text_size_1"
                    android:text="0"/>
            </LinearLayout>
 
            <LinearLayout
                android:id="@+id/ll_signed"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:orientation="vertical"
                android:layout_marginStart="@dimen/dimen4"
                android:layout_marginEnd="@dimen/dimen16"
                android:gravity="center"
                android:background="@drawable/shape_white"
                app:layout_constraintTop_toBottomOf="@id/txt_title"
                app:layout_constraintStart_toEndOf="@id/ll_total"
                app:layout_constraintEnd_toEndOf="parent">
 
                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    style="@style/TextStyle.Category"
                    android:layout_gravity="start"
                    android:text="已签收文件"/>
 
                <TextView
                    android:id="@+id/txt_signed_count"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    style="@style/TextStyle.Category.Item"
                    android:layout_marginTop="@dimen/dimen8"
                    android:layout_marginBottom="@dimen/dimen8"
                    android:textSize="@dimen/title_text_size_1"
                    android:text="0"/>
            </LinearLayout>
 
            <android.support.v7.widget.RecyclerView
                android:id="@+id/recycler_view"
                android:layout_width="match_parent"
                android:layout_height="0dp"
                android:layout_marginTop="@dimen/dimen4"
                android:layout_marginStart="@dimen/dimen16"
                android:layout_marginEnd="@dimen/dimen16"
                app:layout_constraintTop_toBottomOf="@id/ll_total"
                app:layout_constraintBottom_toBottomOf="parent"
                tools:listitem="@layout/item_night_work_3"
                tools:itemCount="6"
                app:layoutManager="android.support.v7.widget.LinearLayoutManager"
                android:orientation="vertical"/>
 
        </android.support.constraint.ConstraintLayout>
 
<!--    </android.support.v4.widget.NestedScrollView>-->
 
</LinearLayout>