stss_agg_permission.xml
2.4 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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_gravity="center"
android:gravity="center"
android:orientation="vertical"
android:background="@drawable/stss_agg_corners_white"
android:layout_width="280dp"
android:layout_height="200dp">
<TextView
android:id="@+id/hw_tv_quick_popupwindow_title"
android:layout_marginTop="15dp"
android:text="温馨提示"
android:textSize="17sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@android:color/white"/>
<View
android:layout_marginTop="10dp"
android:layout_width="match_parent"
android:layout_height="1px"
android:background="@android:color/darker_gray"/>
<TextView
android:gravity="center_vertical|left"
android:id="@+id/hw_tv_quick_popupwindow_info"
android:layout_marginLeft="22dp"
android:layout_marginRight="20dp"
android:layout_width="match_parent"
android:layout_height="100dp"
android:textColor="@android:color/white"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_horizontal"
android:layout_marginTop="4dp"
android:orientation="horizontal">
<TextView
android:id="@+id/hw_tv_quick_popupwindow_cancel"
android:gravity="center"
android:text="取消"
android:background="@drawable/stss_agg_shape_button_tourist_back"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="35dp"
android:textColor="@android:color/white"/>
<TextView
android:id="@+id/hw_tv_quick_popupwindow_ok"
android:gravity="center"
android:text="确定"
android:background="@drawable/stss_agg_shape_button_tourist_gamenow"
android:textColor="@android:color/white"
android:layout_width="match_parent"
android:layout_weight="1"
android:layout_height="35dp"/>
</LinearLayout>
</LinearLayout>