riku
2025-10-31 1897c4ad5fa73b3f0a36e1aa0e1e9000302a6ace
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
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
 
    <android.support.v7.widget.CardView
        android:id="@+id/cv_dialog_take_evidence_main"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginTop="30dp"
        android:layout_marginLeft="12dp"
        android:layout_marginRight="14dp"
        android:layout_marginBottom="40dp"
        app:cardCornerRadius="6dp"
        app:cardElevation="7dp">
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical"
            android:paddingBottom="30dp"
            android:paddingLeft="18dp"
            android:paddingRight="18dp"
            android:paddingTop="12dp">
 
 
                <TextView
                    android:id="@+id/tv_dialog_take_evidence_title"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="新增照片"
                    android:textColor="@color/primary_text"
                    android:textSize="18dp" />
 
 
 
            <EditText
                android:id="@+id/et_description"
                android:layout_marginTop="4dp"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:hint="照片描述" />
 
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginBottom="10dp"
                android:layout_marginTop="6dp"
                android:orientation="horizontal">
 
                <ImageView
                    android:id="@+id/iv_take_evidence_add_photo1"
                    android:layout_width="60dp"
                    android:layout_height="60dp"
                    android:layout_marginTop="6dp"
                    android:scaleType="centerCrop"
                    android:src="@drawable/icon_add_photo" />
 
                <ImageView
                    android:id="@+id/iv_take_evidence_add_photo2"
                    android:layout_width="60dp"
                    android:layout_height="60dp"
                    android:layout_marginLeft="10dp"
                    android:layout_marginTop="6dp"
                    android:scaleType="centerCrop"
                    android:src="@drawable/icon_add_photo_blank" />
 
                <ImageView
                    android:id="@+id/iv_take_evidence_add_photo3"
                    android:layout_width="60dp"
                    android:layout_height="60dp"
                    android:layout_marginLeft="10dp"
                    android:layout_marginTop="6dp"
                    android:scaleType="centerCrop"
                    android:src="@drawable/icon_add_photo_blank" />
            </LinearLayout>
        </LinearLayout>
    </android.support.v7.widget.CardView>
    <android.support.design.widget.FloatingActionButton
        android:src="@drawable/icon_close_white"
 
        android:id="@+id/fab_take_evidence_close"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:fabSize="normal"
        android:layout_marginLeft="76dp"
        app:elevation="8dp"
        app:layout_anchor="@id/cv_dialog_take_evidence_main"
        app:layout_anchorGravity="bottom"
        />
    <android.support.design.widget.FloatingActionButton
        android:src="@drawable/icon_right_white"
        android:id="@+id/fab_take_evidence_ok"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        app:fabSize="normal"
        android:layout_marginRight="76dp"
        app:elevation="8dp"
        app:backgroundTint="@color/lightGreen"
        app:layout_anchor="@id/cv_dialog_take_evidence_main"
        app:layout_anchorGravity="bottom|right"
        />
 
</android.support.design.widget.CoordinatorLayout>