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
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
    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="wrap_content">
    <android.support.v7.widget.CardView
        android:id="@+id/no_more"
        android:orientation="horizontal"
        android:layout_width="200dp"
        android:layout_height="wrap_content"
        app:cardCornerRadius="@dimen/dimen16"
        app:cardBackgroundColor="@color/white"
        android:layout_marginStart="@dimen/dimen4"
        android:layout_marginEnd="@dimen/dimen8"
        android:layout_marginTop="@dimen/dimen4"
        android:layout_marginBottom="@dimen/dimen4">
 
        <android.support.constraint.ConstraintLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@color/transparent"
            android:layout_marginTop="50dp"
            android:padding="@dimen/dimen16"
            android:elevation="@dimen/dimen2"
            tools:ignore="UnusedAttribute">
 
            <TextView
                android:id="@+id/txt_1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                style="@style/TextStyle.Category"
                android:text="文件编号"
                android:visibility="gone"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toTopOf="parent"/>
 
            <TextView
                android:id="@+id/txt_night_work_num"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="暂无新的许可证"
                style="@style/TextStyle.Category.Item"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toBottomOf="@id/txt_1"/>
 
        </android.support.constraint.ConstraintLayout>
 
        <TextView
            android:id="@+id/txt_sign"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="start|bottom"
            android:background="@drawable/button_bg_enable_2"
            style="@style/TextStyle.Category.Item"
            android:visibility="gone"
            android:textColor="@color/white"
            android:paddingStart="@dimen/dimen8"
            android:paddingEnd="@dimen/dimen8"
            android:paddingTop="@dimen/dimen2"
            android:paddingBottom="@dimen/dimen2"
            android:layout_marginStart="@dimen/textSize_16"
            android:layout_marginBottom="@dimen/dimen16"
            android:text="签收"/>
 
        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="160dp"
            android:src="@mipmap/ic_file"
            android:layout_gravity="bottom|end"
            android:layout_marginTop="120dp"
            app:layout_constraintTop_toBottomOf="@id/txt_time"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"/>
 
    </android.support.v7.widget.CardView>
</FrameLayout>