fb_fragment_id_verify.xml
4.8 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
119
120
121
122
123
<?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"
android:fitsSystemWindows="true">
<LinearLayout
android:layout_width="@dimen/fbsdk_dialog_nomal_width"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:background="@drawable/foolishsdk_dialog_nomal_background"
android:gravity="center_vertical|center_horizontal"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="16dp"
android:layout_marginTop="12dp"
android:layout_marginRight="16dp"
android:layout_marginBottom="15dp">
<ImageView
android:id="@+id/fb_fragment_login_close"
android:layout_width="16dp"
android:layout_height="16dp"
android:layout_alignParentTop="true"
android:layout_alignParentRight="true"
android:src="@drawable/fb_dialog_close" />
<!-- <ImageView-->
<!-- android:layout_width="wrap_content"-->
<!-- android:layout_height="wrap_content"-->
<!-- android:layout_below="@+id/fb_fragment_login_close"-->
<!-- android:layout_centerHorizontal="true"-->
<!-- android:layout_marginTop="-8dp"-->
<!-- android:src="@drawable/fb_dialog_logo" />-->
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:textSize="19sp"
android:layout_below="@+id/fb_fragment_login_close"
android:textColor="@color/fbsdk_color_white"
android:text="@string/foolishbird_id_verify_title"/>
</RelativeLayout>
<TextView
android:layout_width="310dp"
android:layout_height="wrap_content"
android:textSize="12sp"
android:textColor="@color/fbsdk_color_login_yellow"
android:text="@string/foolishbird_id_verify_tip"/>
<LinearLayout
android:layout_width="310dp"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:background="@drawable/foolishsdk_dialog_white_background"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="45dp"
android:gravity="center_vertical"
android:id="@+id/fb_fragment_login_spiner_layout"
android:orientation="horizontal">
<EditText
style="@style/FoolishBird_Nomal_EditText"
android:id="@+id/fb_fragment_login_username_edit"
android:drawableLeft="@drawable/fb_fragment_login_username"
android:hint="@string/foolishbird_id_verify_name_hint" />
</LinearLayout>
<View
style="@style/FoolishBIrdSpliteLine"
android:layout_marginLeft="13dp"
android:layout_marginRight="13dp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="45dp"
android:orientation="horizontal">
<EditText
style="@style/FoolishBird_Nomal_EditText"
android:id="@+id/fb_fragment_login_password_edit"
android:drawableLeft="@drawable/fb_icon_idcard"
android:hint="@string/foolishbird_id_verify_card_hint" />
</LinearLayout>
</LinearLayout>
<Button
android:layout_width="310dp"
android:layout_height="40dp"
android:background="@drawable/foolishbird_login_button_red"
android:textColor="@color/fbsdk_color_white"
android:textSize="18sp"
android:id="@+id/fb_fragment_login_login_btn"
android:layout_marginBottom="15dp"
android:layout_marginTop="23dp"
android:text="@string/foolishbird_id_verify_confirm"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="12sp"
android:textColor="@color/fbsdk_color_gray"
android:layout_marginBottom="23dp"
android:autoLink="all"
android:id="@+id/fb_fragment_question"
android:text="@string/foolishbird_id_verify_question"/>
</LinearLayout>
</RelativeLayout>