admin
2022-05-07 4c7cde7ae5ed57335405459e47de4bbd2726c4ba
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"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/shape_white_corner_radius_common"
    android:gravity="center_horizontal"
    android:orientation="vertical">
 
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_marginTop="14dp"
        android:layout_marginRight="10dp"
        android:gravity="center"
        android:text="确定要离开了吗?"
        android:textColor="@color/theme"
        android:textSize="18sp"
        android:textStyle="bold"></TextView>
 
 
    <TextView
        android:layout_width="match_parent"
        android:layout_height="118dp"
        android:gravity="center"
        android:text="你是真的要离开吗?"
        android:textColor="@color/exit_dialog_content_text_color"
        android:textSize="17sp"
        android:visibility="gone"></TextView>
 
    <FrameLayout
        android:id="@+id/fl_ad"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingTop="10dp"
        android:paddingBottom="10dp"></FrameLayout>
 
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginBottom="10dp">
 
        <TextView
            android:id="@+id/tv_positive"
            android:layout_width="0dp"
            android:layout_height="35dp"
            android:layout_weight="1"
            android:background="@drawable/shape_theme_corner_radius_common"
            android:gravity="center"
            android:text="再看看"
            android:textColor="@color/white"
            android:textSize="15sp"></TextView>
 
        <View
            android:layout_width="10dp"
            android:layout_height="1dp"></View>
 
 
        <TextView
            android:id="@+id/tv_negative"
            android:layout_width="0dp"
            android:layout_height="35dp"
            android:layout_weight="1"
            android:background="@drawable/shape_exit_dialog_negative_bg"
            android:gravity="center"
            android:text="狠心离开"
            android:textColor="@color/white"
            android:textSize="15sp"></TextView>
 
 
    </LinearLayout>
 
 
</LinearLayout>