|
@@ -0,0 +1,67 @@
|
|
1
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
3
|
+ android:layout_width="353dp"
|
|
4
|
+ android:layout_height="185dp"
|
|
5
|
+ android:gravity="center_horizontal"
|
|
6
|
+ android:background="@drawable/shape_whiteradiu_bg"
|
|
7
|
+ android:orientation="vertical">
|
|
8
|
+
|
|
9
|
+ <TextView
|
|
10
|
+ android:id="@+id/dialog_title_tv"
|
|
11
|
+ android:layout_width="wrap_content"
|
|
12
|
+ android:layout_height="wrap_content"
|
|
13
|
+ android:layout_marginTop="22dp"
|
|
14
|
+ android:text="@string/regioncode"
|
|
15
|
+ android:textColor="#253A70"
|
|
16
|
+ android:textSize="18sp" />
|
|
17
|
+
|
|
18
|
+ <EditText
|
|
19
|
+ android:id="@+id/dialog_et"
|
|
20
|
+ android:layout_width="match_parent"
|
|
21
|
+ android:layout_height="wrap_content"
|
|
22
|
+ android:layout_margin="15dp"
|
|
23
|
+ android:layout_marginTop="82dp"
|
|
24
|
+ android:background="@null"
|
|
25
|
+ android:gravity="center_vertical"
|
|
26
|
+ android:hint="@string/inputregioncode"
|
|
27
|
+ android:singleLine="true"
|
|
28
|
+ android:textColor="@color/black"
|
|
29
|
+ android:textColorHint="#FFB8C2D9"
|
|
30
|
+ android:textSize="16sp" />
|
|
31
|
+
|
|
32
|
+ <ImageView
|
|
33
|
+ android:layout_width="match_parent"
|
|
34
|
+ android:layout_height="1dp"
|
|
35
|
+ android:layout_marginLeft="15dp"
|
|
36
|
+ android:layout_marginRight="15dp"
|
|
37
|
+ android:layout_marginBottom="15dp"
|
|
38
|
+ android:src="#D0DBF4" />
|
|
39
|
+
|
|
40
|
+ <LinearLayout
|
|
41
|
+ android:layout_width="match_parent"
|
|
42
|
+ android:layout_height="wrap_content"
|
|
43
|
+ android:gravity="center_horizontal"
|
|
44
|
+ android:orientation="horizontal">
|
|
45
|
+
|
|
46
|
+ <TextView
|
|
47
|
+ android:id="@+id/dialog_cancel_tv"
|
|
48
|
+ android:layout_width="147dp"
|
|
49
|
+ android:layout_height="40dp"
|
|
50
|
+ android:background="@drawable/shape_tv_noselect_bg"
|
|
51
|
+ android:gravity="center"
|
|
52
|
+ android:text="@string/cancel"
|
|
53
|
+ android:textColor="#339DFF"
|
|
54
|
+ android:textSize="17sp" />
|
|
55
|
+
|
|
56
|
+ <TextView
|
|
57
|
+ android:id="@+id/dialog_enter_tv"
|
|
58
|
+ android:layout_width="147dp"
|
|
59
|
+ android:layout_height="40dp"
|
|
60
|
+ android:layout_marginLeft="17dp"
|
|
61
|
+ android:background="@drawable/icon_login"
|
|
62
|
+ android:gravity="center"
|
|
63
|
+ android:text="@string/enter"
|
|
64
|
+ android:textColor="@color/white"
|
|
65
|
+ android:textSize="17sp" />
|
|
66
|
+ </LinearLayout>
|
|
67
|
+</LinearLayout>
|