blob: 1c80a28c519c425c3b3f84551585b2dbb37a1050 [file] [log] [blame]
Dirk Vogt47ac2d42017-08-29 23:15:57 +02001<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 xmlns:tools="http://schemas.android.com/tools"
4 android:id="@+id/offline_details_fragment"
5 android:layout_width="match_parent"
6 android:layout_height="match_parent"
7 android:orientation="vertical">
8
9 <include layout="@layout/header_fragment" />
10
11 <RelativeLayout
12 android:layout_width="match_parent"
13 android:layout_height="match_parent"
14 android:background="@color/background"
15 android:padding="@dimen/main_padding">
16
17 <Button
18 android:id="@+id/button_got_it"
19 style="@style/ButtonWhiteBlue"
20 android:layout_width="match_parent"
21 android:layout_height="wrap_content"
22 android:layout_alignParentBottom="true"
23 android:text="@string/camera_swap_got_it" />
24
Dirk Vogt47ac2d42017-08-29 23:15:57 +020025 <Button
26 android:id="@+id/button_remind_later"
27 style="@style/ButtonWhiteGrey"
28 android:layout_width="match_parent"
29 android:layout_height="wrap_content"
30 android:text="@string/camera_swap_remind_me_later"
31 android:layout_above="@+id/button_got_it"
32 android:layout_marginBottom="@dimen/main_margin_small" />
33
Borjan Tchakalofffbfac922017-09-04 12:31:47 +020034 <ScrollView
35 android:layout_width="match_parent"
36 android:layout_height="match_parent"
37 android:layout_above="@+id/button_remind_later"
38 android:paddingStart="@dimen/main_small_text_margin_start"
39 android:paddingEnd="@dimen/main_small_text_margin_end"
40 android:layout_marginBottom="@dimen/main_small_text_below_heading_margin">
41
42 <LinearLayout
43 android:layout_width="match_parent"
44 android:layout_height="wrap_content"
45 android:orientation="vertical">
46
47 <TextView
48 android:id="@+id/part1"
49 style="@style/TextBold16BlueDark"
50 android:layout_width="match_parent"
51 android:layout_height="wrap_content"
52 android:lineSpacingExtra="4sp"
53 android:text="@string/camera_swap_text_part1_both" />
54
55 <TextView
56 android:id="@+id/instructions"
57 style="@style/TextRegular14BlueDark"
58 android:layout_width="match_parent"
59 android:layout_height="wrap_content"
60 android:layout_marginTop="@dimen/main_small_text_below_heading_margin"
61 android:lineSpacingExtra="4sp"
62 android:text="@string/camera_swap_long_text"
63 android:autoLink="web" />
64
65 </LinearLayout>
66
67 </ScrollView>
68
Dirk Vogt47ac2d42017-08-29 23:15:57 +020069 </RelativeLayout>
70
71</LinearLayout>