nut_fragment_current_phone.xml
2.7 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
<com.nut.android.sdk.view.layout.EditTextObserverLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<include layout="@layout/nut_view_title_default" />
<LinearLayout
android:background="@color/nut_color_black_light_transparent"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingBottom="15dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="50dp"
android:gravity="center">
<ImageView
android:layout_width="70dp"
android:layout_height="70dp"
android:background="@drawable/nut_icon_bind_phone">
</ImageView>
</RelativeLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center_horizontal"
android:layout_marginTop="20dp">
<TextView
android:id="@+id/nutTextCurrentPhone"
android:textSize="16sp"
android:textColor="@android:color/white"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"/>
</LinearLayout>
<RelativeLayout
android:id="@+id/nutLayoutContinue"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginRight="15dp"
android:layout_marginLeft="15dp"
android:paddingTop="10dp"
android:gravity="center"
android:visibility="visible">
<Button
android:id="@+id/nutChangePhone"
android:layout_width="match_parent"
android:layout_height="38dp"
android:minHeight="0dp"
android:layout_alignParentBottom="true"
android:layout_marginBottom="20dp"
android:background="@drawable/nut_selector_color_primary_button"
android:gravity="center"
android:text="@string/nut_tips_change_phone"
android:textColor="@android:color/white"
android:textSize="16sp" />
</RelativeLayout>
</LinearLayout>
</com.nut.android.sdk.view.layout.EditTextObserverLayout>