2020-06-17 11:25:27 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?><!-- This Source Code Form is subject to the terms of the Mozilla Public
|
2019-10-03 19:43:33 +00:00
|
|
|
- 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"
|
2020-04-22 21:29:43 +00:00
|
|
|
android:layout_height="48dp"
|
2020-06-17 11:25:27 +00:00
|
|
|
android:layout_marginBottom="8dp"
|
2019-10-03 19:43:33 +00:00
|
|
|
android:background="?android:selectableItemBackground"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:gravity="center_vertical"
|
2020-04-22 21:29:43 +00:00
|
|
|
android:paddingStart="16dp"
|
2020-04-27 19:57:38 +00:00
|
|
|
android:paddingEnd="16dp">
|
2019-10-03 19:43:33 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@android:id/widget_frame"
|
|
|
|
android:layout_width="48dp"
|
|
|
|
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"
|
2020-06-17 11:25:27 +00:00
|
|
|
android:layout_marginStart="8dp"
|
2019-10-03 19:43:33 +00:00
|
|
|
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="Delete browsing data category" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@android:id/summary"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2020-06-17 11:25:27 +00:00
|
|
|
android:layout_marginStart="8dp"
|
2019-10-03 19:43:33 +00:00
|
|
|
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="Delete browsing data summary" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|