* Manga detail Also adjust chapter item layout to accommodate bigger display/font size * Library * Updates * History * Browse * Preferences * Button * Navigation view * category-download * Google Sans * Reader * Chips * Revert "Google Sans" This reverts commit 5dd4c41f * Misc * Cleanups * Section header text appearance * Increase library manga title size * Revert "Increase library manga title size" This reverts commit 474be913 * Increase section header letter spacing * Derps (cherry picked from commit 6d650518a14953a1d5e74d1e56de841492929fb6)
39 lines
1.6 KiB
XML
39 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<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:background="?attr/selectableItemBackground"
|
|
android:paddingStart="16dp"
|
|
android:paddingTop="4dp"
|
|
android:paddingEnd="12dp"
|
|
android:paddingBottom="4dp"
|
|
tools:context=".ui.browse.source.browse.BrowseSourceController">
|
|
|
|
<TextView
|
|
android:id="@+id/chapters_label"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/chapters"
|
|
android:textAppearance="?attr/textAppearanceSubtitle1"
|
|
android:textIsSelectable="false"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toStartOf="@+id/btn_chapters_filter"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
<ImageButton
|
|
android:id="@+id/btn_chapters_filter"
|
|
android:layout_width="28dp"
|
|
android:layout_height="28dp"
|
|
android:background="?attr/selectableItemBackgroundBorderless"
|
|
android:contentDescription="@string/action_filter"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:srcCompat="@drawable/ic_filter_list_24dp"
|
|
app:tint="?attr/colorOnBackground" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|