2019-05-24 18:35:51 +00:00
|
|
|
<?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/. -->
|
2020-02-16 04:59:02 +00:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-05-24 18:35:51 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
2019-09-10 05:04:22 +00:00
|
|
|
android:layout_height="wrap_content"
|
2020-02-16 04:59:02 +00:00
|
|
|
android:minHeight="?android:attr/listPreferredItemHeight"
|
2019-05-24 18:35:51 +00:00
|
|
|
tools:parentTag="androidx.constraintlayout.widget.ConstraintLayout">
|
|
|
|
|
2019-09-04 20:27:30 +00:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/checkbox"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-09-11 23:44:56 +00:00
|
|
|
android:layout_marginStart="@dimen/library_item_icon_margin_horizontal"
|
2020-02-16 04:59:02 +00:00
|
|
|
android:gravity="center_vertical"
|
2019-09-10 05:04:22 +00:00
|
|
|
android:clickable="false"
|
2020-02-16 04:59:02 +00:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2019-05-24 18:35:51 +00:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2020-02-16 04:59:02 +00:00
|
|
|
app:layout_constraintTop_toTopOf="parent"/>
|
2019-05-24 18:35:51 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="@dimen/library_item_icon_margin_horizontal"
|
2019-09-11 23:44:56 +00:00
|
|
|
android:layout_marginEnd="@dimen/library_item_icon_margin_horizontal"
|
2019-05-24 18:35:51 +00:00
|
|
|
android:clickable="false"
|
2019-09-10 05:04:22 +00:00
|
|
|
android:textAppearance="@style/ListItemTextStyle"
|
|
|
|
app:layout_constraintBottom_toTopOf="@id/subtitle"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2019-09-04 20:27:30 +00:00
|
|
|
app:layout_constraintStart_toEndOf="@id/checkbox"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2019-09-10 05:04:22 +00:00
|
|
|
app:layout_constraintVertical_chainStyle="packed"
|
2019-09-04 20:27:30 +00:00
|
|
|
tools:text="Open Tabs" />
|
2019-05-24 18:35:51 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/subtitle"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="@dimen/library_item_icon_margin_horizontal"
|
2019-09-11 23:44:56 +00:00
|
|
|
android:layout_marginEnd="@dimen/library_item_icon_margin_horizontal"
|
2019-05-24 18:35:51 +00:00
|
|
|
android:clickable="false"
|
2019-09-10 05:04:22 +00:00
|
|
|
android:textAppearance="@style/SubtitleTextStyle"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2019-09-04 20:27:30 +00:00
|
|
|
app:layout_constraintStart_toEndOf="@id/checkbox"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/title"
|
2019-09-10 05:04:22 +00:00
|
|
|
app:layout_constraintVertical_chainStyle="packed"
|
2019-09-04 20:27:30 +00:00
|
|
|
tools:text="2 Open Tabs" />
|
2020-02-16 04:59:02 +00:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|