summaryrefslogtreecommitdiffstats
path: root/mobile/android/fenix/app/src/main/res/layout/checkbox_left_preference_etp.xml
diff options
context:
space:
mode:
Diffstat (limited to 'mobile/android/fenix/app/src/main/res/layout/checkbox_left_preference_etp.xml')
-rw-r--r--mobile/android/fenix/app/src/main/res/layout/checkbox_left_preference_etp.xml57
1 files changed, 57 insertions, 0 deletions
diff --git a/mobile/android/fenix/app/src/main/res/layout/checkbox_left_preference_etp.xml b/mobile/android/fenix/app/src/main/res/layout/checkbox_left_preference_etp.xml
new file mode 100644
index 0000000000..7ad7aead3f
--- /dev/null
+++ b/mobile/android/fenix/app/src/main/res/layout/checkbox_left_preference_etp.xml
@@ -0,0 +1,57 @@
+<?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/. -->
+<androidx.constraintlayout.widget.ConstraintLayout 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:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_marginStart="66dp"
+ android:minHeight="48dp"
+ android:background="?android:selectableItemBackground"
+ android:clickable="true"
+ android:focusable="true"
+ android:gravity="center_vertical"
+ android:paddingTop="@dimen/checkbox_preference_padding_vertical"
+ android:paddingBottom="@dimen/checkbox_preference_padding_vertical">
+
+ <LinearLayout
+ android:id="@android:id/widget_frame"
+ android:layout_width="wrap_content"
+ android:layout_height="0dp"
+ android:gravity="center_vertical"
+ android:orientation="vertical"
+ app:layout_constraintBottom_toBottomOf="parent"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toTopOf="parent" />
+
+ <TextView
+ android:id="@android:id/title"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:layout_marginStart="8dp"
+ android:textAlignment="viewStart"
+ android:textColor="@color/state_list_text_color"
+ android:textSize="16sp"
+ app:layout_constraintBottom_toTopOf="@android:id/summary"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintStart_toEndOf="@android:id/widget_frame"
+ app:layout_constraintTop_toTopOf="parent"
+ app:layout_constraintVertical_chainStyle="packed"
+ tools:text="Cookies" />
+
+ <TextView
+ android:id="@android:id/summary"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:layout_marginStart="8dp"
+ android:textAlignment="viewStart"
+ android:textColor="@color/secondary_state_list_text_color"
+ app:layout_constraintBottom_toBottomOf="parent"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintStart_toEndOf="@android:id/widget_frame"
+ app:layout_constraintTop_toBottomOf="@android:id/title"
+ app:layout_constraintVertical_chainStyle="packed"
+ tools:text="Cookies summary" />
+</androidx.constraintlayout.widget.ConstraintLayout>