2017-05-20 14:56:31 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-02-17 23:26:20 +01:00
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-05-20 14:56:31 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@id/swipe_refresh"
|
|
|
|
android:layout_width="match_parent"
|
2020-02-17 23:26:20 +01:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:context="eu.kanade.tachiyomi.ui.catalogue.browse.BrowseCatalogueController">
|
2017-05-20 14:56:31 +02:00
|
|
|
|
2020-01-05 17:29:27 +01:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
2017-05-20 14:56:31 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-02-17 23:26:20 +01:00
|
|
|
android:layout_height="match_parent">
|
2017-05-20 14:56:31 +02:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/manga_cover"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
2020-02-17 23:26:20 +01:00
|
|
|
android:layout_marginStart="16dp"
|
2017-05-20 14:56:31 +02:00
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
android:layout_marginBottom="16dp"
|
|
|
|
android:contentDescription="@string/description_cover"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintDimensionRatio="h,3:2"
|
2020-02-17 23:26:20 +01:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintVertical_bias="0.0"
|
|
|
|
tools:background="@color/material_grey_700" />
|
2017-05-20 14:56:31 +02:00
|
|
|
|
2020-01-05 17:29:27 +01:00
|
|
|
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
2017-05-20 14:56:31 +02:00
|
|
|
android:id="@+id/fab_favorite"
|
|
|
|
style="@style/Theme.Widget.FAB"
|
2020-01-10 01:10:55 +01:00
|
|
|
android:layout_marginEnd="16dp"
|
2020-02-17 23:26:20 +01:00
|
|
|
android:layout_marginBottom="16dp"
|
2017-05-20 14:56:31 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2020-02-17 23:26:20 +01:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:srcCompat="@drawable/ic_bookmark_border_white_24dp" />
|
2017-05-20 14:56:31 +02:00
|
|
|
|
2020-01-05 17:29:27 +01:00
|
|
|
<androidx.core.widget.NestedScrollView
|
2017-05-20 14:56:31 +02:00
|
|
|
android:id="@+id/info_scrollview"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
2020-01-10 01:10:55 +01:00
|
|
|
android:layout_marginStart="16dp"
|
2020-02-17 23:26:20 +01:00
|
|
|
android:layout_marginTop="16dp"
|
2020-01-10 01:10:55 +01:00
|
|
|
android:layout_marginEnd="16dp"
|
2020-02-17 23:26:20 +01:00
|
|
|
android:layout_marginBottom="16dp"
|
2017-05-20 14:56:31 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2020-02-17 23:26:20 +01:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2020-01-10 01:10:55 +01:00
|
|
|
app:layout_constraintStart_toEndOf="@+id/manga_cover"
|
2020-02-17 23:26:20 +01:00
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
2017-05-20 14:56:31 +02:00
|
|
|
|
2020-01-05 17:29:27 +01:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
2017-05-20 14:56:31 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2018-01-18 19:15:33 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_full_title"
|
|
|
|
style="@style/TextAppearance.Medium.Title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:maxLines="2"
|
2020-02-17 23:26:20 +01:00
|
|
|
android:text="@string/manga_info_full_title_label"
|
2018-01-18 19:15:33 +01:00
|
|
|
android:textIsSelectable="false"
|
2018-03-09 22:35:10 +01:00
|
|
|
app:autoSizeMaxTextSize="20sp"
|
2020-02-17 23:26:20 +01:00
|
|
|
app:autoSizeMinTextSize="12sp"
|
|
|
|
app:autoSizeStepGranularity="2sp"
|
|
|
|
app:autoSizeTextType="uniform"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
2018-01-18 19:15:33 +01:00
|
|
|
|
2017-05-20 14:56:31 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_author_label"
|
|
|
|
style="@style/TextAppearance.Medium.Body2"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/manga_info_author_label"
|
|
|
|
android:textIsSelectable="false"
|
2020-02-17 23:26:20 +01:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/manga_full_title" />
|
2017-05-20 14:56:31 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_author"
|
|
|
|
style="@style/TextAppearance.Regular.Body1.Secondary"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2020-01-10 01:10:55 +01:00
|
|
|
android:layout_marginStart="8dp"
|
2017-05-20 14:56:31 +02:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:textIsSelectable="false"
|
|
|
|
app:layout_constraintBaseline_toBaselineOf="@+id/manga_author_label"
|
2020-02-17 23:26:20 +01:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/manga_author_label" />
|
2017-05-20 14:56:31 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_artist_label"
|
|
|
|
style="@style/TextAppearance.Medium.Body2"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/manga_info_artist_label"
|
|
|
|
android:textIsSelectable="false"
|
2020-02-17 23:26:20 +01:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/manga_author_label" />
|
2017-05-20 14:56:31 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_artist"
|
|
|
|
style="@style/TextAppearance.Regular.Body1.Secondary"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2020-01-10 01:10:55 +01:00
|
|
|
android:layout_marginStart="8dp"
|
2017-05-20 14:56:31 +02:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:textIsSelectable="false"
|
|
|
|
app:layout_constraintBaseline_toBaselineOf="@+id/manga_artist_label"
|
2020-02-17 23:26:20 +01:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/manga_artist_label" />
|
2017-05-20 14:56:31 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_chapters_label"
|
|
|
|
style="@style/TextAppearance.Medium.Body2"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/manga_info_last_chapter_label"
|
|
|
|
android:textIsSelectable="false"
|
2020-02-17 23:26:20 +01:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/manga_artist_label" />
|
2017-05-20 14:56:31 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_chapters"
|
|
|
|
style="@style/TextAppearance.Regular.Body1.Secondary"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2020-01-10 01:10:55 +01:00
|
|
|
android:layout_marginStart="8dp"
|
2017-05-20 14:56:31 +02:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:textIsSelectable="false"
|
|
|
|
app:layout_constraintBaseline_toBaselineOf="@+id/manga_chapters_label"
|
2020-02-17 23:26:20 +01:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/manga_chapters_label" />
|
2017-05-20 14:56:31 +02:00
|
|
|
|
|
|
|
<TextView
|
2018-01-18 19:15:33 +01:00
|
|
|
android:id="@+id/manga_last_update_label"
|
2017-05-20 14:56:31 +02:00
|
|
|
style="@style/TextAppearance.Medium.Body2"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-01-18 19:15:33 +01:00
|
|
|
android:text="@string/manga_info_latest_data_label"
|
2017-05-20 14:56:31 +02:00
|
|
|
android:textIsSelectable="false"
|
2020-02-17 23:26:20 +01:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/manga_chapters_label" />
|
2017-05-20 14:56:31 +02:00
|
|
|
|
|
|
|
<TextView
|
2018-01-18 19:15:33 +01:00
|
|
|
android:id="@+id/manga_last_update"
|
2017-05-20 14:56:31 +02:00
|
|
|
style="@style/TextAppearance.Regular.Body1.Secondary"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2020-01-10 01:10:55 +01:00
|
|
|
android:layout_marginStart="8dp"
|
2017-05-20 14:56:31 +02:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:textIsSelectable="false"
|
2018-01-18 19:15:33 +01:00
|
|
|
app:layout_constraintBaseline_toBaselineOf="@+id/manga_last_update_label"
|
2020-02-17 23:26:20 +01:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/manga_last_update_label" />
|
2017-05-20 14:56:31 +02:00
|
|
|
|
|
|
|
<TextView
|
2018-01-18 19:15:33 +01:00
|
|
|
android:id="@+id/manga_status_label"
|
2017-05-20 14:56:31 +02:00
|
|
|
style="@style/TextAppearance.Medium.Body2"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-01-18 19:15:33 +01:00
|
|
|
android:text="@string/manga_info_status_label"
|
2017-05-20 14:56:31 +02:00
|
|
|
android:textIsSelectable="false"
|
2020-02-17 23:26:20 +01:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/manga_last_update_label" />
|
2017-05-20 14:56:31 +02:00
|
|
|
|
|
|
|
<TextView
|
2018-01-18 19:15:33 +01:00
|
|
|
android:id="@+id/manga_status"
|
2017-05-20 14:56:31 +02:00
|
|
|
style="@style/TextAppearance.Regular.Body1.Secondary"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2020-01-10 01:10:55 +01:00
|
|
|
android:layout_marginStart="8dp"
|
2017-05-20 14:56:31 +02:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:textIsSelectable="false"
|
2018-01-18 19:15:33 +01:00
|
|
|
app:layout_constraintBaseline_toBaselineOf="@+id/manga_status_label"
|
2020-02-17 23:26:20 +01:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/manga_status_label" />
|
2017-05-20 14:56:31 +02:00
|
|
|
|
|
|
|
<TextView
|
2018-01-18 19:15:33 +01:00
|
|
|
android:id="@+id/manga_source_label"
|
2017-05-20 14:56:31 +02:00
|
|
|
style="@style/TextAppearance.Medium.Body2"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-01-18 19:15:33 +01:00
|
|
|
android:text="@string/manga_info_source_label"
|
2017-05-20 14:56:31 +02:00
|
|
|
android:textIsSelectable="false"
|
2020-02-17 23:26:20 +01:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/manga_status_label" />
|
2017-05-20 14:56:31 +02:00
|
|
|
|
|
|
|
<TextView
|
2018-01-18 19:15:33 +01:00
|
|
|
android:id="@+id/manga_source"
|
2017-05-20 14:56:31 +02:00
|
|
|
style="@style/TextAppearance.Regular.Body1.Secondary"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2020-01-10 01:10:55 +01:00
|
|
|
android:layout_marginStart="8dp"
|
2018-01-18 19:15:33 +01:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
2017-05-20 14:56:31 +02:00
|
|
|
android:textIsSelectable="false"
|
2018-01-18 19:15:33 +01:00
|
|
|
app:layout_constraintBaseline_toBaselineOf="@+id/manga_source_label"
|
2020-02-17 23:26:20 +01:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/manga_source_label" />
|
2017-05-20 14:56:31 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_summary_label"
|
|
|
|
style="@style/TextAppearance.Medium.Body2"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/description"
|
|
|
|
android:textIsSelectable="false"
|
2020-02-17 23:26:20 +01:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/manga_source" />
|
2017-05-20 14:56:31 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_summary"
|
|
|
|
style="@style/TextAppearance.Regular.Body1.Secondary"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
2020-02-17 23:26:20 +01:00
|
|
|
android:layout_marginEnd="64dp"
|
2017-05-20 14:56:31 +02:00
|
|
|
android:textIsSelectable="false"
|
2020-01-10 01:10:55 +01:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2020-02-17 23:26:20 +01:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/manga_summary_label" />
|
2017-05-20 14:56:31 +02:00
|
|
|
|
2018-01-18 19:15:33 +01:00
|
|
|
<me.gujun.android.taggroup.TagGroup
|
|
|
|
android:id="@+id/manga_genres_tags"
|
|
|
|
style="@style/TagGroup"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-02-17 23:26:20 +01:00
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginEnd="64dp"
|
2018-01-18 19:15:33 +01:00
|
|
|
app:atg_backgroundColor="@android:color/transparent"
|
|
|
|
app:atg_borderColor="@color/md_blue_A400"
|
2020-02-17 23:26:20 +01:00
|
|
|
app:atg_borderStrokeWidth="1dp"
|
2018-01-18 19:15:33 +01:00
|
|
|
app:atg_textColor="@color/md_blue_A400"
|
2020-02-17 23:26:20 +01:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/manga_summary" />
|
2018-01-18 19:15:33 +01:00
|
|
|
|
2020-01-05 17:29:27 +01:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
2017-05-20 14:56:31 +02:00
|
|
|
|
2020-01-05 17:29:27 +01:00
|
|
|
</androidx.core.widget.NestedScrollView>
|
2017-05-20 14:56:31 +02:00
|
|
|
|
2020-01-05 17:29:27 +01:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
2017-05-20 14:56:31 +02:00
|
|
|
|
2020-01-05 17:29:27 +01:00
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|