stss_agg_policies_agreements.xml
4.1 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
style="@style/stss_layoutStyle_commonActivity"
android:gravity="center_horizontal"
android:paddingLeft="@dimen/stss_px_30"
android:paddingTop="@dimen/stss_px_30"
android:paddingRight="@dimen/stss_px_30"
android:background="@drawable/stss_agg_shape_main_dialog">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
>
<ImageView
android:id="@+id/iv_company_logo"
android:layout_width="@dimen/stss_px_180"
android:layout_height="1px"
android:src="@drawable/stss_agg_logo"
android:layout_gravity="center"/>
<View
style="@style/stss_vertical_empty_view"
android:layout_weight="2" />
<TextView
android:id="@+id/stss_tv_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/stss_color_000000"
android:textSize="@dimen/stss_px_75"
android:text="@string/stss_polices"
android:gravity="center"
/>
<View
style="@style/stss_vertical_empty_view"
android:layout_weight="2" />
<TextView
android:id="@+id/stss_tv_right"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="@dimen/stss_px_3"
android:textColor="@color/stss_color_000000"
android:textSize="@dimen/stss_px_45"
android:text="@string/stss_agreement"
android:gravity="center"
/>
</LinearLayout>
<View
style="@style/stss_vertical_empty_view"
android:layout_weight="2" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:ignore="WebViewLayout"
android:orientation="vertical">
<WebView
android:id="@+id/stss_webview"
android:layout_width="match_parent"
android:layout_height="150dp"
android:layout_margin="@dimen/stss_px_3"
android:background="@color/stss_color_ea6e00"
android:scrollbars="none" />
</LinearLayout>
<View
style="@style/stss_vertical_empty_view"
android:layout_weight="2" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="@color/stss_color_000000"
android:textSize="@dimen/stss_px_45"
android:text="@string/stss_touch_agree"
/>
<View
style="@style/stss_vertical_empty_view"
android:layout_weight="2" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="5dp">
<View
style="@style/stss_vertical_empty_view"
android:layout_weight="2" />
<Button
android:id="@+id/stss_btn_reject"
android:layout_width="wrap_content"
android:layout_height="@dimen/stss_px_105"
android:background="@drawable/stss_agg_shape_gray"
android:text="@string/stss_reject"
android:textColor="@color/stss_color_ffffff"/>
<View
style="@style/stss_vertical_empty_view"
android:layout_weight="2" />
<Button
android:id="@+id/stss_btn_agreement"
android:layout_width="wrap_content"
android:layout_height="@dimen/stss_px_105"
android:background="@drawable/stss_agg_selector_btn_submit"
android:text="@string/stss_agree"
android:textColor="@color/stss_color_000000"/>
<View
style="@style/stss_vertical_empty_view"
android:layout_weight="2" />
</LinearLayout>
</LinearLayout>