4c3de86c
孙向锦
UI改版第一版
|
1
2
3
4
|
<?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="match_parent"
|
e129be23
孙向锦
添加一些修改选项
|
5
|
android:background="#0952B5">
|
4c3de86c
孙向锦
UI改版第一版
|
6
7
8
9
10
11
|
<TextView
android:id="@+id/signin_result_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
|
e129be23
孙向锦
添加一些修改选项
|
12
|
android:layout_marginTop="50dp"
|
4c3de86c
孙向锦
UI改版第一版
|
13
|
android:text="@string/signin_result"
|
e129be23
孙向锦
添加一些修改选项
|
14
15
|
android:textColor="@color/white"
android:textSize="@dimen/big_text_p1"
|
4c3de86c
孙向锦
UI改版第一版
|
16
17
|
android:textStyle="bold" />
|
e129be23
孙向锦
添加一些修改选项
|
18
19
|
<View
android:id="@+id/line0"
|
4c3de86c
孙向锦
UI改版第一版
|
20
|
android:layout_width="match_parent"
|
e129be23
孙向锦
添加一些修改选项
|
21
|
android:layout_height="1dp"
|
4c3de86c
孙向锦
UI改版第一版
|
22
|
android:layout_below="@id/signin_result_title"
|
e129be23
孙向锦
添加一些修改选项
|
23
24
|
android:background="#5386cb"
android:layout_marginTop="54dp"/>
|
4c3de86c
孙向锦
UI改版第一版
|
25
|
|
e129be23
孙向锦
添加一些修改选项
|
26
27
28
29
30
31
32
33
|
<LinearLayout
android:id="@+id/data_title_layout"
android:layout_width="match_parent"
android:layout_height="66dp"
android:layout_below="@id/line0"
android:background="#084aa3"
android:gravity="center_vertical"
android:layout_centerHorizontal="true">
|
4c3de86c
孙向锦
UI改版第一版
|
34
35
|
<TextView
|
e129be23
孙向锦
添加一些修改选项
|
36
37
|
android:id="@+id/yindao"
android:layout_width="0dp"
|
4c3de86c
孙向锦
UI改版第一版
|
38
|
android:layout_height="wrap_content"
|
e129be23
孙向锦
添加一些修改选项
|
39
40
|
android:gravity="right"
android:paddingRight="60dp"
|
4c3de86c
孙向锦
UI改版第一版
|
41
|
android:text="@string/yindao"
|
e129be23
孙向锦
添加一些修改选项
|
42
43
44
45
|
android:layout_weight="1"
android:textColor="@color/white"
android:textSize="@dimen/big_text_p4"
android:textStyle="bold" />
|
4c3de86c
孙向锦
UI改版第一版
|
46
47
|
<TextView
|
e129be23
孙向锦
添加一些修改选项
|
48
49
|
android:id="@+id/yingdaoresult"
android:layout_width="0dp"
|
4c3de86c
孙向锦
UI改版第一版
|
50
|
android:layout_height="wrap_content"
|
e129be23
孙向锦
添加一些修改选项
|
51
52
53
54
55
56
57
58
|
android:layout_weight="1"
android:layout_toRightOf="@+id/yindao"
android:paddingLeft="60dp"
android:gravity="left"
android:text="@string/yindao"
android:textColor="@color/white"
android:textSize="@dimen/big_text_p4"
android:textStyle="bold" />
|
4c3de86c
孙向锦
UI改版第一版
|
59
|
|
e129be23
孙向锦
添加一些修改选项
|
60
|
</LinearLayout>
|
4c3de86c
孙向锦
UI改版第一版
|
61
62
63
64
65
66
|
<View
android:id="@+id/line"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_below="@id/data_title_layout"
|
e129be23
孙向锦
添加一些修改选项
|
67
|
android:background="#5386CB" />
|
4c3de86c
孙向锦
UI改版第一版
|
68
|
|
e129be23
孙向锦
添加一些修改选项
|
69
|
<LinearLayout
|
4c3de86c
孙向锦
UI改版第一版
|
70
71
|
android:id="@+id/data_result_layout"
android:layout_width="match_parent"
|
e129be23
孙向锦
添加一些修改选项
|
72
|
android:layout_height="66dp"
|
4c3de86c
孙向锦
UI改版第一版
|
73
|
android:layout_below="@id/line"
|
e129be23
孙向锦
添加一些修改选项
|
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
android:gravity="center_vertical"
android:layout_centerHorizontal="true"
>
<!-- android:background="#064AA3"-->
<TextView
android:id="@+id/shidao"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:gravity="right"
android:text="@string/shidao"
android:paddingRight="60dp"
android:textColor="@color/white"
android:textSize="@dimen/big_text_p4"
android:textStyle="bold" />
|
4c3de86c
孙向锦
UI改版第一版
|
89
90
91
|
<TextView
android:id="@+id/shidaoresult"
|
e129be23
孙向锦
添加一些修改选项
|
92
93
|
android:layout_width="0dp"
android:layout_weight="1"
|
4c3de86c
孙向锦
UI改版第一版
|
94
|
android:layout_height="wrap_content"
|
e129be23
孙向锦
添加一些修改选项
|
95
96
|
android:gravity="left"
android:paddingLeft="60dp"
|
4c3de86c
孙向锦
UI改版第一版
|
97
98
|
android:text="@string/shidao"
android:textColor="@color/white"
|
e129be23
孙向锦
添加一些修改选项
|
99
|
android:textSize="@dimen/big_text_p4"
|
4c3de86c
孙向锦
UI改版第一版
|
100
101
|
android:textStyle="bold" />
|
e129be23
孙向锦
添加一些修改选项
|
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
</LinearLayout>
<View
android:id="@+id/line2"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_below="@id/data_result_layout"
android:background="#5386cb" />
<LinearLayout
android:id="@+id/weidaoresult_layout"
android:layout_width="match_parent"
android:layout_height="66dp"
android:layout_below="@id/line2"
android:gravity="center_vertical"
android:background="#084aa3"
android:layout_centerHorizontal="true">
|
4c3de86c
孙向锦
UI改版第一版
|
119
120
|
<TextView
|
e129be23
孙向锦
添加一些修改选项
|
121
122
|
android:layout_weight="1"
android:layout_width="0dp"
|
4c3de86c
孙向锦
UI改版第一版
|
123
|
android:layout_height="wrap_content"
|
e129be23
孙向锦
添加一些修改选项
|
124
125
126
|
android:gravity="right"
android:paddingRight="60dp"
android:text="@string/weidao"
|
4c3de86c
孙向锦
UI改版第一版
|
127
|
android:textColor="@color/white"
|
e129be23
孙向锦
添加一些修改选项
|
128
129
|
android:textStyle="bold"
android:textSize="@dimen/big_text_p4" />
|
4c3de86c
孙向锦
UI改版第一版
|
130
131
132
|
<TextView
android:id="@+id/weidaoresult"
|
e129be23
孙向锦
添加一些修改选项
|
133
|
android:layout_width="0dp"
|
4c3de86c
孙向锦
UI改版第一版
|
134
|
android:layout_height="wrap_content"
|
e129be23
孙向锦
添加一些修改选项
|
135
136
|
android:layout_weight="1"
android:gravity="left"
|
4c3de86c
孙向锦
UI改版第一版
|
137
|
android:text="@string/weidao"
|
e129be23
孙向锦
添加一些修改选项
|
138
|
android:paddingLeft="60dp"
|
4c3de86c
孙向锦
UI改版第一版
|
139
|
android:textColor="@color/white"
|
e129be23
孙向锦
添加一些修改选项
|
140
|
android:textSize="@dimen/big_text_p4"
|
4c3de86c
孙向锦
UI改版第一版
|
141
|
android:textStyle="bold" />
|
e129be23
孙向锦
添加一些修改选项
|
142
|
</LinearLayout>
|
4c3de86c
孙向锦
UI改版第一版
|
143
|
|
e129be23
孙向锦
添加一些修改选项
|
144
145
146
147
148
|
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_below="@id/weidaoresult_layout"
android:background="#5386CB" />
|
4c3de86c
孙向锦
UI改版第一版
|
149
|
|
1c5059dd
孙向锦
下载文件UI更新
|
150
151
152
153
|
<TextView
android:id="@+id/result"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
|
1c5059dd
孙向锦
下载文件UI更新
|
154
|
android:layout_alignParentBottom="true"
|
e129be23
孙向锦
添加一些修改选项
|
155
156
157
158
159
|
android:layout_centerHorizontal="true"
android:layout_marginBottom="40dp"
android:textColor="@color/white"
android:textSize="@dimen/big_text_p5" />
|
1c5059dd
孙向锦
下载文件UI更新
|
160
|
|
4c3de86c
孙向锦
UI改版第一版
|
161
|
</RelativeLayout>
|