dialog_backuser.xml
2.53 KB
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"
android:layout_width="wrap_content"
android:layout_height="200dip"
android:layout_gravity="center"
android:background="@drawable/uplive_close_backgroud"
android:orientation="vertical"
>
<TextView
android:id="@+id/back_user_title"
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:gravity="center"
android:text="@string/back_user_title"
android:textColor="#282828"
android:textSize="20dip"
/>
<TextView
android:id="@+id/back_user_msg"
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1.5"
android:gravity="center"
android:paddingLeft="25dip"
android:paddingRight="25dip"
android:text="@string/back_user_msg_true"
android:textColor="#787878"
android:textSize="20dip" />
<TextView
android:id="@+id/lin1"
android:layout_width="match_parent"
android:layout_height="1px"
android:layout_toRightOf="@+id/uplive_close"
android:background="#DCDCDC" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:background="#ffffff"
android:orientation="horizontal" >
<Button
android:id="@+id/back_user_no"
android:layout_width="0dip"
android:layout_height="match_parent"
android:layout_weight="0.8"
android:background="@null"
android:gravity="center"
android:text="@string/Cancel"
android:textColor="#d31863"
android:textSize="20dip" />
<TextView
android:id="@+id/lin"
android:layout_width="1px"
android:layout_height="match_parent"
android:layout_toRightOf="@+id/uplive_close"
android:background="#DCDCDC" />
<Button
android:id="@+id/back_user_true"
android:layout_width="0dip"
android:layout_height="match_parent"
android:layout_toRightOf="@+id/lin"
android:layout_weight="1"
android:background="@null"
android:gravity="center"
android:text="@string/back_user_true"
android:textColor="#d31863"
android:textSize="20dip" />
</LinearLayout>
</LinearLayout>