1<?xml version="1.0" encoding="utf-8"?>
2<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
3    android:id="@+id/trusted_devices_prompt_layout"
4    android:layout_width="match_parent"
5    android:layout_height="match_parent"
6    android:background="#FF80CBC4" >
7
8    <RelativeLayout
9        android:layout_width="match_parent"
10        android:layout_height="match_parent" >
11
12        <LinearLayout
13            android:layout_width="match_parent"
14            android:layout_height="336dp"
15            android:background="#FFB2DFDB" >
16        </LinearLayout>
17
18        <LinearLayout
19            android:id="@+id/nfc_how_it_works_image_text"
20            android:layout_width="match_parent"
21            android:layout_height="match_parent"
22            android:paddingLeft="16dp"
23            android:paddingRight="16dp"
24            android:gravity="center_horizontal"
25            android:paddingTop="144dp"
26            android:orientation="vertical">
27
28          <ImageView
29              android:id="@+id/nfc_how_it_works_image"
30              android:layout_width="match_parent"
31              android:layout_height="282dp"
32              android:gravity="center"
33              android:src="@drawable/nfc_how_it_works" />
34
35          <TextView
36              android:id="@+id/nfc_how_it_works_title"
37              android:layout_width="420dp"
38              android:layout_height="wrap_content"
39              android:text="@string/nfc_how_it_works_title"
40              android:textColor="#FF263238"
41              android:textSize="24sp" />
42
43          <TextView
44              android:id="@+id/nfc_how_it_works_content"
45              android:layout_width="420dp"
46              android:layout_height="wrap_content"
47              android:paddingTop="10dp"
48              android:paddingBottom="18dp"
49              android:text="@string/nfc_how_it_works_content"
50              android:textColor="#FF263238"
51              android:textSize="20sp" />
52        </LinearLayout>
53        <RelativeLayout
54            android:layout_width="match_parent"
55            android:layout_height="48dp"
56            android:layout_alignParentBottom="true"
57            android:background="#FFB2DFDB" >
58          <Button
59              android:id="@+id/nfc_how_it_works_button"
60              android:background="?android:attr/selectableItemBackground"
61              android:layout_alignParentRight="true"
62              android:layout_width="wrap_content"
63              android:layout_height="48dp"
64              android:layout_marginRight="20dp"
65              android:text="@string/nfc_how_it_works_got_it"
66              android:textSize="14sp"
67              android:textColor="#263238"
68              style="?android:attr/borderlessButtonStyle" />
69        </RelativeLayout>
70    </RelativeLayout>
71</FrameLayout>
72