2020-06-25 04:48:20 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-07-17 22:54:01 +02:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-06-25 04:48:20 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-05-22 17:55:05 +02:00
|
|
|
android:background="@drawable/selectable_item_background"
|
2020-06-25 04:48:20 +02:00
|
|
|
android:paddingStart="16dp"
|
2020-07-17 22:54:01 +02:00
|
|
|
android:paddingTop="4dp"
|
2021-01-04 05:37:56 +01:00
|
|
|
android:paddingEnd="12dp"
|
2020-07-17 22:54:01 +02:00
|
|
|
android:paddingBottom="4dp"
|
2020-06-25 04:48:20 +02:00
|
|
|
tools:context=".ui.browse.source.browse.BrowseSourceController">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/chapters_label"
|
|
|
|
style="@style/TextAppearance.Regular.SubHeading"
|
2020-07-17 22:54:01 +02:00
|
|
|
android:layout_width="0dp"
|
2020-06-25 04:48:20 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/chapters"
|
2020-07-17 22:54:01 +02:00
|
|
|
android:textIsSelectable="false"
|
2020-11-08 01:22:20 +01:00
|
|
|
android:textSize="16sp"
|
2020-07-17 22:54:01 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toStartOf="@+id/btn_chapters_filter"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
2020-09-07 23:18:41 +02:00
|
|
|
<ImageButton
|
2020-07-17 22:54:01 +02:00
|
|
|
android:id="@+id/btn_chapters_filter"
|
2020-12-31 22:22:11 +01:00
|
|
|
android:layout_width="28dp"
|
|
|
|
android:layout_height="28dp"
|
2021-05-22 17:55:05 +02:00
|
|
|
android:background="@drawable/ripple_regular"
|
2020-09-07 23:18:41 +02:00
|
|
|
android:contentDescription="@string/action_filter"
|
2020-07-17 22:54:01 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2020-09-07 23:18:41 +02:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:srcCompat="@drawable/ic_filter_list_24dp"
|
|
|
|
app:tint="?attr/colorOnPrimary" />
|
2020-06-25 04:48:20 +02:00
|
|
|
|
2020-07-17 22:54:01 +02:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|