123
hxb
2022-11-24 4ec30c4521bad6a7e63b5e6a8b6c867f2a2b3c5b
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
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_gravity="center"
    android:alpha="0.7"
    android:background="@color/c2"
    android:gravity="center"
    android:minHeight="1000dp"
    android:minWidth="1000dp"
    android:orientation="vertical" >
 
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:alpha="0.7"
        android:background="@color/c2" >
 
        <TextView
            android:id="@+id/tip"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="80dp"
            android:gravity="center"
            android:text="@string/add_box_tip"
            android:textColor="@color/c43"
            android:textSize="16sp" />
 
        <TextView
            android:id="@+id/tip1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/tip"
            android:layout_marginLeft="50dp"
            android:layout_marginTop="70dp"
            android:gravity="center"
            android:text="@string/add_box_tip1"
            android:textColor="@color/c43"
            android:textSize="16sp" />
 
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/tip1"
            android:layout_marginLeft="50dp"
            android:layout_marginTop="20dp"
            android:gravity="center"
            android:text="@string/add_box_tip2"
            android:textColor="@color/c43"
            android:textSize="16sp" />
 
        <!-- 提示设置 -->
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:orientation="vertical" >
 
            <CheckBox
                android:id="@+id/not_show"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="15dp"
                android:button="@drawable/checkbox_btn_addbox_tip_selector"
                android:gravity="left|center_vertical"
                android:paddingLeft="10dp"
                android:text="@string/add_device_not_tip_again"
                android:textColor="@color/c43"
                android:textSize="15sp" />
 
            <Button
                android:id="@+id/close"
                android:layout_width="match_parent"
                android:layout_height="45dp"
                android:layout_marginBottom="90dp"
                android:layout_marginLeft="15dp"
                android:layout_marginRight="15dp"
                android:layout_marginTop="20dp"
                android:background="@drawable/common_btn_bg_shape_white"
                android:text="@string/add_box_tip_confirm_btn"
                android:textColor="@color/c43"
                android:textSize="17sp" />
        </LinearLayout>
    </RelativeLayout>
 
</LinearLayout>