blob: 230a28b8669a4f90528ebe82eb2ee372fceee0d9 [file] [log] [blame]
Martijn Coenencbcc76e2015-06-05 21:28:17 +02001<?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="200dp"
15 android:background="#FFB2DFDB" >
16 </LinearLayout>
17
Ruchi Kandoi23054b62017-06-12 11:09:49 -070018 <ScrollView
Martijn Coenencbcc76e2015-06-05 21:28:17 +020019 android:layout_width="match_parent"
20 android:layout_height="match_parent"
Ruchi Kandoi23054b62017-06-12 11:09:49 -070021 android:paddingBottom="48dp"
22 android:fillViewport="true">
Martijn Coenencbcc76e2015-06-05 21:28:17 +020023
Ruchi Kandoi23054b62017-06-12 11:09:49 -070024 <LinearLayout
25 android:id="@+id/nfc_how_it_works_image_text"
26 android:layout_width="match_parent"
27 android:layout_height="match_parent"
28 android:paddingLeft="16dp"
29 android:paddingRight="16dp"
30 android:paddingTop="72dp"
31 android:orientation="vertical">
Martijn Coenencbcc76e2015-06-05 21:28:17 +020032
Ruchi Kandoi23054b62017-06-12 11:09:49 -070033 <ImageView
34 android:id="@+id/nfc_how_it_works_image"
35 android:layout_width="match_parent"
36 android:layout_height="188dp"
37 android:gravity="center"
38 android:src="@drawable/nfc_how_it_works" />
Martijn Coenencbcc76e2015-06-05 21:28:17 +020039
Ruchi Kandoi23054b62017-06-12 11:09:49 -070040 <TextView
41 android:id="@+id/nfc_how_it_works_title"
42 android:layout_width="match_parent"
43 android:layout_height="wrap_content"
44 android:text="@string/nfc_how_it_works_title"
45 android:paddingLeft="16dp"
46 android:paddingRight="16dp"
47 android:textColor="#FF263238"
48 android:textSize="24sp" />
49
50 <TextView
51 android:id="@+id/nfc_how_it_works_content"
52 android:layout_width="match_parent"
53 android:layout_height="wrap_content"
54 android:paddingTop="10dp"
55 android:paddingBottom="18dp"
56 android:paddingLeft="16dp"
57 android:paddingRight="16dp"
58 android:text="@string/nfc_how_it_works_content"
59 android:textColor="#FF263238"
60 android:textSize="16sp" />
61 </LinearLayout>
62 </ScrollView>
63
Martijn Coenencbcc76e2015-06-05 21:28:17 +020064 <RelativeLayout
65 android:layout_width="match_parent"
66 android:layout_height="48dp"
67 android:layout_alignParentBottom="true"
68 android:background="#FFB2DFDB" >
69 <Button
70 android:id="@+id/nfc_how_it_works_button"
71 android:background="?android:attr/selectableItemBackground"
Robert Luo98512952020-05-31 12:30:14 +080072 android:layout_alignParentEnd="true"
Martijn Coenencbcc76e2015-06-05 21:28:17 +020073 android:layout_width="wrap_content"
74 android:layout_height="48dp"
Robert Luo98512952020-05-31 12:30:14 +080075 android:layout_marginEnd="20dp"
Martijn Coenencbcc76e2015-06-05 21:28:17 +020076 android:text="@string/nfc_how_it_works_got_it"
77 android:textSize="14sp"
78 android:textColor="#263238"
79 style="?android:attr/borderlessButtonStyle" />
80 </RelativeLayout>
81 </RelativeLayout>
82</FrameLayout>