blob: 5d71e1a25e24c94fabca74ce50a99be1b8e1eee2 (
plain)
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
|
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/trusted_devices_prompt_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/nfc_how_it_works_main_background" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="336dp"
android:background="@color/nfc_how_it_works_background" >
</LinearLayout>
<LinearLayout
android:id="@+id/nfc_how_it_works_image_text"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:gravity="center_horizontal"
android:paddingTop="144dp"
android:orientation="vertical">
<ImageView
android:id="@+id/nfc_how_it_works_image"
android:layout_width="match_parent"
android:layout_height="282dp"
android:gravity="center"
android:src="@drawable/nfc_how_it_works" />
<TextView
android:id="@+id/nfc_how_it_works_title"
android:layout_width="420dp"
android:layout_height="wrap_content"
android:text="@string/nfc_how_it_works_title"
android:textColor="@color/nfc_how_it_works_title_text_color"
android:textSize="24sp" />
<TextView
android:id="@+id/nfc_how_it_works_content"
android:layout_width="420dp"
android:layout_height="wrap_content"
android:paddingTop="10dp"
android:paddingBottom="18dp"
android:text="@string/nfc_how_it_works_content"
android:textColor="@color/nfc_how_it_works_content_text_color"
android:textSize="20sp" />
</LinearLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="48dp"
android:layout_alignParentBottom="true"
android:background="@color/nfc_how_it_works_footer_background" >
<Button
android:id="@+id/nfc_how_it_works_button"
android:background="?android:attr/selectableItemBackground"
android:layout_alignParentRight="true"
android:layout_width="wrap_content"
android:layout_height="48dp"
android:layout_marginRight="20dp"
android:text="@string/nfc_how_it_works_got_it"
android:textSize="14sp"
android:textColor="@color/nfc_how_it_works_got_it_text_color"
style="?android:attr/borderlessButtonStyle" />
</RelativeLayout>
</RelativeLayout>
</FrameLayout>
|