Bug 1849073 - Part 1: Remove the Bookmark Search Dialog
[gecko.git] / mobile / android / fenix / app / src / main / res / layout / checkbox_left_preference_etp.xml
blob7ad7aead3fab76552fa53e8bdc799b9152021d3a
1 <?xml version="1.0" encoding="utf-8"?>
2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
3    - License, v. 2.0. If a copy of the MPL was not distributed with this
4    - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
5 <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
6     xmlns:app="http://schemas.android.com/apk/res-auto"
7     xmlns:tools="http://schemas.android.com/tools"
8     android:layout_width="match_parent"
9     android:layout_height="wrap_content"
10     android:layout_marginStart="66dp"
11     android:minHeight="48dp"
12     android:background="?android:selectableItemBackground"
13     android:clickable="true"
14     android:focusable="true"
15     android:gravity="center_vertical"
16     android:paddingTop="@dimen/checkbox_preference_padding_vertical"
17     android:paddingBottom="@dimen/checkbox_preference_padding_vertical">
19     <LinearLayout
20         android:id="@android:id/widget_frame"
21         android:layout_width="wrap_content"
22         android:layout_height="0dp"
23         android:gravity="center_vertical"
24         android:orientation="vertical"
25         app:layout_constraintBottom_toBottomOf="parent"
26         app:layout_constraintStart_toStartOf="parent"
27         app:layout_constraintTop_toTopOf="parent" />
29     <TextView
30         android:id="@android:id/title"
31         android:layout_width="0dp"
32         android:layout_height="wrap_content"
33         android:layout_marginStart="8dp"
34         android:textAlignment="viewStart"
35         android:textColor="@color/state_list_text_color"
36         android:textSize="16sp"
37         app:layout_constraintBottom_toTopOf="@android:id/summary"
38         app:layout_constraintEnd_toEndOf="parent"
39         app:layout_constraintStart_toEndOf="@android:id/widget_frame"
40         app:layout_constraintTop_toTopOf="parent"
41         app:layout_constraintVertical_chainStyle="packed"
42         tools:text="Cookies" />
44     <TextView
45         android:id="@android:id/summary"
46         android:layout_width="0dp"
47         android:layout_height="wrap_content"
48         android:layout_marginStart="8dp"
49         android:textAlignment="viewStart"
50         android:textColor="@color/secondary_state_list_text_color"
51         app:layout_constraintBottom_toBottomOf="parent"
52         app:layout_constraintEnd_toEndOf="parent"
53         app:layout_constraintStart_toEndOf="@android:id/widget_frame"
54         app:layout_constraintTop_toBottomOf="@android:id/title"
55         app:layout_constraintVertical_chainStyle="packed"
56         tools:text="Cookies summary" />
57 </androidx.constraintlayout.widget.ConstraintLayout>