summaryrefslogtreecommitdiffstats
path: root/mobile/android/android-components/samples/browser/src/main/res/layout/activity_installed_add_on_details.xml
blob: 1c713c13b307d33849a45c9869f97ecaa887f2a9 (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<?xml version="1.0" encoding="utf-8"?><!-- This Source Code Form is subject to the terms of the Mozilla Public
   - License, v. 2.0. If a copy of the MPL was not distributed with this
   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="16dp"
        android:layout_marginBottom="6dp">

    <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:paddingStart="?android:attr/listPreferredItemPaddingStart"
            android:paddingEnd="?android:attr/listPreferredItemPaddingEnd">

        <androidx.appcompat.widget.SwitchCompat
                android:id="@+id/enable_switch"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_gravity="center_vertical|end"
                android:background="?android:attr/selectableItemBackground"
                android:checked="true"
                android:clickable="true"
                android:focusable="true"
                android:text="@string/mozac_feature_addons_enabled"
                android:padding="16dp"
                android:textSize="18sp"/>

        <TextView
                android:id="@+id/settings"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@+id/enable_switch"
                android:background="?android:attr/selectableItemBackground"
                android:drawablePadding="10dp"
                android:padding="16dp"
                android:text="@string/mozac_feature_addons_settings"
                android:textColor="@drawable/addon_textview_selector"
                android:textSize="18sp"
                app:drawableStartCompat="@drawable/mozac_ic_preferences"
                app:drawableTint="@android:color/black" />

        <TextView
                android:id="@+id/details"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@+id/settings"
                android:background="?android:attr/selectableItemBackground"
                android:drawablePadding="6dp"
                android:padding="16dp"
                android:text="@string/mozac_feature_addons_details"
                android:textColor="@drawable/addon_textview_selector"
                android:textSize="18sp"
                app:drawableStartCompat="@drawable/mozac_ic_information_24"
                app:drawableTint="@android:color/black" />

        <TextView
                android:id="@+id/permissions"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@+id/details"
                android:background="?android:attr/selectableItemBackground"
                android:drawablePadding="6dp"
                android:padding="16dp"
                android:text="@string/mozac_feature_addons_permissions"
                android:textColor="@drawable/addon_textview_selector"
                android:textSize="18sp"
                app:drawableStartCompat="@drawable/mozac_ic_permissions" />

        <androidx.appcompat.widget.SwitchCompat
            android:id="@+id/allow_in_private_browsing_switch"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical|end"
            android:layout_below="@+id/permissions"
            android:background="?android:attr/selectableItemBackground"
            android:checked="true"
            android:clickable="true"
            android:focusable="true"
            android:text="@string/mozac_feature_addons_settings_allow_in_private_browsing"
            android:padding="16dp"
            android:textSize="18sp"/>

        <Button
            android:id="@+id/remove_add_on"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_below="@+id/allow_in_private_browsing_switch"
            android:layout_marginTop="16dp"
            android:text="@string/mozac_feature_addons_remove"
            android:textAlignment="center"
            android:textColor="@color/photonRed50" />
    </RelativeLayout>
</ScrollView>