doum
8 天以前 2b287056e2f59518888d05a1bbc7e5a55fbd84d5
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@drawable/bt_dialog_round"
                android:layout_marginLeft="60dp"
                android:layout_marginRight="60dp">
 
    <TextView
            android:id="@+id/text_dialog_title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="28dp"
            android:text=""
            android:textColor="@color/white"
            android:textSize="24sp" />
 
    <TextView
            android:id="@+id/text_dialog_message"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@id/text_dialog_title"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="24dp"
            android:layout_marginLeft="27dp"
            android:layout_marginRight="27dp"
            android:text=""
            android:textColor="#999999"
            android:textSize="16sp" />
 
    <View
            android:id="@+id/view_line"
            android:layout_width="match_parent"
            android:layout_height="1dp"
            android:background="@color/colorLine"
            android:layout_below="@id/text_dialog_message"
            android:layout_marginTop="25dp"/>
 
    <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_below="@id/view_line">
 
        <Button
                android:id="@+id/btn_dialog_exit"
                android:layout_width="0dp"
                android:layout_height="60dp"
                android:layout_weight="1"
                android:background="@null"
                android:gravity="center"
                android:text="取消"
                android:textColor="@color/white"
                android:textSize="26sp"/>
        <View
                android:layout_width="1dp"
                android:layout_height="match_parent"
                android:background="@color/colorLine"/>
 
        <Button
                android:id="@+id/btn_dialog_confirm"
                android:layout_width="0dp"
                android:layout_height="60dp"
                android:layout_weight="1"
                android:background="@null"
                android:gravity="center"
                android:text=""
                android:textColor="#F34B56"
                android:textSize="26sp"/>
    </LinearLayout>
 
</RelativeLayout>