2020-06-19 23:32:44 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-06-01 23:59:38 +02:00
|
|
|
<androidx.constraintlayout.motion.widget.MotionLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-06-19 23:32:44 +02:00
|
|
|
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:orientation="vertical"
|
2021-06-01 23:59:38 +02:00
|
|
|
app:layoutDescription="@xml/manga_info_header_scene"
|
2020-06-19 23:32:44 +02:00
|
|
|
tools:context=".ui.browse.source.browse.BrowseSourceController">
|
|
|
|
|
2021-06-01 23:59:38 +02:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/backdrop"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
2021-08-22 01:09:19 +02:00
|
|
|
android:layout_marginBottom="-32dp"
|
2021-06-01 23:59:38 +02:00
|
|
|
android:alpha="0.2"
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
app:layout_constraintBottom_toBottomOf="@+id/manga_cover"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2021-08-06 20:18:37 +02:00
|
|
|
tools:background="@mipmap/ic_launcher"
|
|
|
|
tools:ignore="ContentDescription" />
|
2021-06-01 23:59:38 +02:00
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/backdrop_overlay"
|
2020-06-19 23:32:44 +02:00
|
|
|
android:layout_width="match_parent"
|
2021-08-19 15:12:52 +02:00
|
|
|
android:layout_height="0dp"
|
2021-08-27 04:07:30 +02:00
|
|
|
android:background="@drawable/manga_backdrop_gradient"
|
2021-06-01 23:59:38 +02:00
|
|
|
android:backgroundTint="?android:attr/colorBackground"
|
2021-08-19 15:12:52 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="@+id/backdrop"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
2020-06-19 23:32:44 +02:00
|
|
|
|
2021-06-01 23:59:38 +02:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/manga_cover"
|
|
|
|
android:layout_width="100dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_marginStart="16dp"
|
2021-08-22 01:09:19 +02:00
|
|
|
android:layout_marginTop="16dp"
|
2021-06-01 23:59:38 +02:00
|
|
|
android:background="@drawable/rounded_rectangle"
|
|
|
|
android:contentDescription="@string/description_cover"
|
|
|
|
android:maxWidth="100dp"
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
app:layout_constraintDimensionRatio="w,3:2"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
tools:layout_height="133dp"
|
|
|
|
tools:src="@mipmap/ic_launcher" />
|
2020-06-19 23:32:44 +02:00
|
|
|
|
2021-06-01 23:59:38 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/manga_detail"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
2021-08-22 01:09:19 +02:00
|
|
|
android:layout_marginBottom="8dp"
|
2021-06-01 23:59:38 +02:00
|
|
|
android:orientation="vertical"
|
|
|
|
app:layout_constraintBottom_toBottomOf="@+id/manga_cover"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/manga_cover">
|
2020-06-19 23:32:44 +02:00
|
|
|
|
2021-06-01 23:59:38 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_full_title"
|
|
|
|
style="@style/TextAppearance.Medium.Title"
|
2020-06-19 23:32:44 +02:00
|
|
|
android:layout_width="match_parent"
|
2021-06-06 16:29:28 +02:00
|
|
|
android:layout_height="60sp"
|
2021-06-01 23:59:38 +02:00
|
|
|
android:layout_marginBottom="4dp"
|
|
|
|
android:gravity="bottom"
|
|
|
|
android:text="@string/manga_info_full_title_label"
|
|
|
|
android:textIsSelectable="false"
|
|
|
|
app:autoSizeMaxTextSize="20sp"
|
|
|
|
app:autoSizeMinTextSize="12sp"
|
|
|
|
app:autoSizeStepGranularity="2sp"
|
|
|
|
app:autoSizeTextType="uniform" />
|
2020-06-21 04:30:02 +02:00
|
|
|
|
2021-06-01 23:59:38 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_author"
|
2021-08-22 17:07:18 +02:00
|
|
|
style="@style/TextAppearance.Regular.Body1.Secondary.Bold"
|
2021-06-01 23:59:38 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textIsSelectable="false"
|
|
|
|
tools:text="Author" />
|
2020-09-07 23:18:41 +02:00
|
|
|
|
2021-06-01 23:59:38 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_artist"
|
2021-08-22 17:07:18 +02:00
|
|
|
style="@style/TextAppearance.Regular.Body1.Secondary.Bold"
|
2021-06-01 23:59:38 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textIsSelectable="false"
|
|
|
|
tools:text="Artist" />
|
2020-09-07 23:18:41 +02:00
|
|
|
|
2021-06-01 23:59:38 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/manga_status_row"
|
|
|
|
android:layout_width="wrap_content"
|
2021-06-06 16:29:28 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="4dp">
|
2020-09-07 23:18:41 +02:00
|
|
|
|
2021-06-01 23:59:38 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_status"
|
|
|
|
style="@style/TextAppearance.Regular.Body1.Secondary"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:textIsSelectable="false"
|
|
|
|
tools:text="Status" />
|
2020-09-07 23:18:41 +02:00
|
|
|
|
2021-06-01 23:59:38 +02:00
|
|
|
<TextView
|
|
|
|
style="@style/TextAppearance.Regular.Body1.Secondary"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="4dp"
|
|
|
|
android:layout_marginEnd="4dp"
|
|
|
|
android:text="•"
|
|
|
|
android:textIsSelectable="false"
|
|
|
|
tools:ignore="HardcodedText" />
|
2020-06-19 23:32:44 +02:00
|
|
|
|
2021-06-01 23:59:38 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_source"
|
|
|
|
style="@style/TextAppearance.Regular.Body1.Secondary"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:textIsSelectable="false"
|
|
|
|
tools:text="Source" />
|
2020-06-19 23:32:44 +02:00
|
|
|
|
2020-07-04 22:07:25 +02:00
|
|
|
</LinearLayout>
|
2020-06-19 23:32:44 +02:00
|
|
|
|
2021-06-02 00:01:23 +02:00
|
|
|
</LinearLayout>
|
2020-06-19 23:32:44 +02:00
|
|
|
|
2021-06-09 23:14:57 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/manga_actions"
|
2021-06-01 23:59:38 +02:00
|
|
|
android:layout_width="0dp"
|
2020-06-19 23:32:44 +02:00
|
|
|
android:layout_height="wrap_content"
|
2021-08-22 01:09:19 +02:00
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginTop="-24dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
2021-06-09 23:14:57 +02:00
|
|
|
android:orientation="horizontal"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2021-06-01 23:59:38 +02:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2021-06-09 23:14:57 +02:00
|
|
|
app:layout_constraintTop_toBottomOf="@id/backdrop">
|
2020-06-19 23:32:44 +02:00
|
|
|
|
2021-06-09 23:14:57 +02:00
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/btn_favorite"
|
2021-06-19 21:45:16 +02:00
|
|
|
style="@style/Widget.Tachiyomi.Button.ActionButton"
|
2021-06-09 23:14:57 +02:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="@string/add_to_library"
|
|
|
|
app:icon="@drawable/ic_favorite_border_24dp" />
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/btn_tracking"
|
2021-06-19 21:45:16 +02:00
|
|
|
style="@style/Widget.Tachiyomi.Button.ActionButton"
|
2021-06-09 23:14:57 +02:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="@string/manga_tracking_tab"
|
|
|
|
android:visibility="gone"
|
|
|
|
app:icon="@drawable/ic_sync_24dp"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/btn_webview"
|
2021-06-19 21:45:16 +02:00
|
|
|
style="@style/Widget.Tachiyomi.Button.ActionButton"
|
2021-06-09 23:14:57 +02:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="@string/action_web_view"
|
|
|
|
android:visibility="gone"
|
|
|
|
app:icon="@drawable/ic_public_24dp"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
2020-09-23 04:20:29 +02:00
|
|
|
|
2021-06-05 00:51:43 +02:00
|
|
|
<androidx.constraintlayout.motion.widget.MotionLayout
|
|
|
|
android:id="@+id/manga_summary_section"
|
|
|
|
android:layout_width="match_parent"
|
2021-06-01 23:59:38 +02:00
|
|
|
android:layout_height="wrap_content"
|
2021-06-05 00:51:43 +02:00
|
|
|
app:layoutDescription="@xml/manga_summary_section_scene"
|
2021-06-01 23:59:38 +02:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2021-08-27 04:07:30 +02:00
|
|
|
app:layout_constraintStart_toStartOf="parent">
|
2020-09-23 04:20:29 +02:00
|
|
|
|
2021-06-05 00:51:43 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_summary_text"
|
|
|
|
style="@style/TextAppearance.Regular.Body1.Secondary"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
2021-08-27 04:07:30 +02:00
|
|
|
android:layout_marginStart="16dp"
|
2021-06-05 00:51:43 +02:00
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
2021-08-27 04:07:30 +02:00
|
|
|
android:maxLines="3"
|
|
|
|
android:ellipsize="end"
|
2021-06-05 00:51:43 +02:00
|
|
|
android:textIsSelectable="false"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/manga_cover"
|
|
|
|
tools:text="Collapsed summary content Collapsed summary content Collapsed summary content Collapsed summary content Collapsed summary content Collapsed summary content" />
|
2020-06-19 23:32:44 +02:00
|
|
|
|
2021-08-27 04:07:30 +02:00
|
|
|
<View
|
|
|
|
android:id="@+id/manga_info_scrim"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="32sp"
|
|
|
|
android:background="@drawable/manga_info_gradient"
|
|
|
|
android:backgroundTint="?android:attr/colorBackground"
|
|
|
|
app:layout_constraintBottom_toBottomOf="@+id/manga_summary_text"
|
|
|
|
app:layout_constraintEnd_toEndOf="@+id/manga_summary_text"
|
|
|
|
app:layout_constraintStart_toStartOf="@+id/manga_summary_text" />
|
|
|
|
|
2021-06-05 00:51:43 +02:00
|
|
|
<View
|
|
|
|
android:id="@+id/manga_info_toggle_more_scrim"
|
2021-08-27 04:07:30 +02:00
|
|
|
android:layout_width="36sp"
|
|
|
|
android:layout_height="18sp"
|
2021-06-05 00:51:43 +02:00
|
|
|
android:background="@drawable/manga_info_more_gradient"
|
|
|
|
android:backgroundTint="?android:attr/colorBackground"
|
2021-08-27 04:07:30 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="@+id/manga_summary_text"
|
|
|
|
app:layout_constraintEnd_toEndOf="@+id/manga_info_toggle_more"
|
|
|
|
app:layout_constraintStart_toStartOf="@+id/manga_info_toggle_more" />
|
2020-07-18 16:57:11 +02:00
|
|
|
|
2021-06-05 00:51:43 +02:00
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/manga_info_toggle_more"
|
2021-06-19 21:45:16 +02:00
|
|
|
style="@style/Widget.Tachiyomi.Button.InlineButton"
|
2021-06-05 00:51:43 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-08-27 04:07:30 +02:00
|
|
|
android:background="@drawable/ic_expand_more_24dp"
|
|
|
|
android:backgroundTint="?android:attr/textColorPrimary"
|
|
|
|
app:layout_constraintBottom_toBottomOf="@+id/manga_info_toggle_more"
|
|
|
|
app:layout_constraintEnd_toEndOf="@+id/manga_info_toggle_more"
|
|
|
|
app:layout_constraintStart_toStartOf="@+id/manga_info_toggle_more" />
|
2020-07-18 16:57:11 +02:00
|
|
|
|
2021-06-05 00:51:43 +02:00
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/manga_info_toggle_less"
|
2021-06-19 21:45:16 +02:00
|
|
|
style="@style/Widget.Tachiyomi.Button.InlineButton"
|
2021-06-01 23:59:38 +02:00
|
|
|
android:layout_width="wrap_content"
|
2020-09-23 04:20:29 +02:00
|
|
|
android:layout_height="wrap_content"
|
2021-08-27 04:07:30 +02:00
|
|
|
android:background="@drawable/ic_expand_less_24dp"
|
|
|
|
android:backgroundTint="?android:attr/textColorPrimary"
|
2021-06-05 00:51:43 +02:00
|
|
|
android:paddingStart="8dp"
|
2021-08-27 04:07:30 +02:00
|
|
|
android:paddingEnd="8dp"
|
2021-06-05 00:51:43 +02:00
|
|
|
android:visibility="gone"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2021-08-27 04:07:30 +02:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2021-06-05 00:51:43 +02:00
|
|
|
app:layout_constraintTop_toBottomOf="@+id/manga_summary_text"
|
|
|
|
tools:visibility="gone" />
|
2021-06-01 23:59:38 +02:00
|
|
|
|
2021-06-05 00:51:43 +02:00
|
|
|
<HorizontalScrollView
|
|
|
|
android:id="@+id/manga_genres_tags_compact"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:requiresFadingEdge="horizontal"
|
|
|
|
android:scrollbars="none"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2021-08-27 04:07:30 +02:00
|
|
|
app:layout_constraintTop_toBottomOf="@+id/manga_info_toggle_more">
|
2020-06-19 23:32:44 +02:00
|
|
|
|
2021-06-05 00:51:43 +02:00
|
|
|
<com.google.android.material.chip.ChipGroup
|
|
|
|
android:id="@+id/manga_genres_tags_compact_chips"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingStart="16dp"
|
|
|
|
android:paddingTop="8dp"
|
|
|
|
android:paddingEnd="16dp"
|
|
|
|
android:paddingBottom="8dp"
|
|
|
|
app:chipSpacingHorizontal="4dp"
|
|
|
|
app:singleLine="true" />
|
2021-06-01 23:59:38 +02:00
|
|
|
|
2021-06-05 00:51:43 +02:00
|
|
|
</HorizontalScrollView>
|
|
|
|
|
|
|
|
<com.google.android.material.chip.ChipGroup
|
|
|
|
android:id="@+id/manga_genres_tags_full_chips"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:paddingTop="8dp"
|
|
|
|
android:paddingBottom="8dp"
|
|
|
|
android:visibility="gone"
|
|
|
|
app:chipSpacingHorizontal="4dp"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/manga_info_toggle_less"
|
|
|
|
tools:visibility="gone" />
|
|
|
|
|
|
|
|
</androidx.constraintlayout.motion.widget.MotionLayout>
|
2020-06-19 23:32:44 +02:00
|
|
|
|
2021-06-01 23:59:38 +02:00
|
|
|
</androidx.constraintlayout.motion.widget.MotionLayout>
|