aboutsummaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout/fragment_quick_protection.xml
blob: 569f9b1bc100ca40705924cd44c5467637a9e24d (plain) (blame)
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
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:background="@color/white"
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    >

    <include layout="@layout/topbar" />

    <androidx.core.widget.NestedScrollView
        android:layout_height="match_parent"
        android:layout_width="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        >

        <LinearLayout
            android:layout_height="match_parent"
            android:layout_marginBottom="56dp"
            android:layout_width="match_parent"
            android:orientation="vertical"
            tools:context=".main.MainActivity"
            >

            <TextView
                android:id="@+id/quick_protection_info"
                android:layout_gravity="center_horizontal"
                android:layout_height="wrap_content"
                android:layout_width="match_parent"
                android:paddingLeft="32dp"
                android:paddingRight="32dp"
                android:paddingTop="16dp"
                android:text="@string/quick_protection_info"
                android:textColor="@color/black"
                android:textSize="14sp"
                />

            <TextView
                android:fontFamily="sans-serif-medium"
                android:id="@+id/quick_protection_settings_list"
                android:layout_gravity="center_horizontal"
                android:layout_height="wrap_content"
                android:layout_width="match_parent"
                android:paddingBottom="16dp"
                android:paddingLeft="32dp"
                android:paddingRight="32dp"
                android:paddingTop="16dp"
                android:text="@string/quick_protection_settings_list"
                android:textColor="@color/black"
                android:textSize="14sp"
                />
        </LinearLayout>

    </androidx.core.widget.NestedScrollView>

    <TextView
        android:fontFamily="sans-serif-medium"
        android:gravity="center_vertical|end"
        android:id="@+id/learn_more"
        android:layout_gravity="bottom|end"
        android:layout_height="56dp"
        android:layout_width="wrap_content"
        android:paddingLeft="32dp"
        android:paddingRight="32dp"
        android:text="@string/learn_more"
        android:textColor="#007fff"
        android:textSize="14sp"
        />
</androidx.coordinatorlayout.widget.CoordinatorLayout>