2020-06-19 17:32:44 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-08-28 16:53:59 -04:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-06-19 17:32:44 -04: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"
|
|
|
|
tools:context=".ui.browse.source.browse.BrowseSourceController">
|
|
|
|
|
2021-06-01 17:59:38 -04:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/backdrop"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
2021-08-21 19:09:19 -04:00
|
|
|
android:layout_marginBottom="-32dp"
|
2021-06-01 17:59:38 -04: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 14:18:37 -04:00
|
|
|
tools:background="@mipmap/ic_launcher"
|
|
|
|
tools:ignore="ContentDescription" />
|
2021-06-01 17:59:38 -04:00
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/backdrop_overlay"
|
2020-06-19 17:32:44 -04:00
|
|
|
android:layout_width="match_parent"
|
2021-08-19 09:12:52 -04:00
|
|
|
android:layout_height="0dp"
|
2021-08-26 22:07:30 -04:00
|
|
|
android:background="@drawable/manga_backdrop_gradient"
|
2021-06-01 17:59:38 -04:00
|
|
|
android:backgroundTint="?android:attr/colorBackground"
|
2021-08-19 09:12:52 -04:00
|
|
|
app:layout_constraintBottom_toBottomOf="@+id/backdrop"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
2020-06-19 17:32:44 -04:00
|
|
|
|
2021-08-31 17:53:37 -04:00
|
|
|
<androidx.constraintlayout.widget.Barrier
|
|
|
|
android:id="@+id/manga_cover_barrier"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:barrierDirection="top"
|
|
|
|
app:barrierMargin="16dp"
|
|
|
|
app:constraint_referenced_ids="manga_cover"
|
|
|
|
app:layout_constraintTop_toTopOf="@id/manga_cover" />
|
|
|
|
|
2021-06-01 17:59:38 -04:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/manga_cover"
|
|
|
|
android:layout_width="100dp"
|
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_marginStart="16dp"
|
2021-08-21 19:09:19 -04:00
|
|
|
android:layout_marginTop="16dp"
|
2021-06-01 17:59:38 -04: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 17:32:44 -04:00
|
|
|
|
2021-06-01 17:59:38 -04: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-31 17:53:37 -04:00
|
|
|
android:gravity="center_vertical"
|
2021-06-01 17:59:38 -04:00
|
|
|
android:orientation="vertical"
|
2021-08-31 17:53:37 -04:00
|
|
|
app:layout_constraintBottom_toBottomOf="@id/manga_info_barrier"
|
2021-06-01 17:59:38 -04:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2021-09-06 11:46:38 -04:00
|
|
|
app:layout_constraintStart_toEndOf="@+id/manga_cover"
|
|
|
|
app:layout_constraintTop_toTopOf="@id/manga_cover_barrier">
|
2020-06-19 17:32:44 -04:00
|
|
|
|
2021-06-01 17:59:38 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_full_title"
|
2020-06-19 17:32:44 -04:00
|
|
|
android:layout_width="match_parent"
|
2021-08-31 17:53:37 -04:00
|
|
|
android:layout_height="wrap_content"
|
2021-09-06 11:46:38 -04:00
|
|
|
android:text="@string/manga_info_full_title_label"
|
2021-10-03 12:32:04 -04:00
|
|
|
android:textAppearance="?attr/textAppearanceHeadline6"
|
2021-09-06 11:46:38 -04:00
|
|
|
android:textIsSelectable="false" />
|
2020-06-20 22:30:02 -04:00
|
|
|
|
2021-06-01 17:59:38 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_author"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-08-31 17:53:37 -04:00
|
|
|
android:layout_marginTop="4dp"
|
2021-10-03 12:32:04 -04:00
|
|
|
android:textAppearance="?attr/textAppearanceSubtitle2"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2021-06-01 17:59:38 -04:00
|
|
|
android:textIsSelectable="false"
|
|
|
|
tools:text="Author" />
|
2020-09-07 17:18:41 -04:00
|
|
|
|
2021-06-01 17:59:38 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_artist"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-08-31 17:53:37 -04:00
|
|
|
android:layout_marginTop="2dp"
|
2021-10-03 12:32:04 -04:00
|
|
|
android:textAppearance="?attr/textAppearanceSubtitle2"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2021-06-01 17:59:38 -04:00
|
|
|
android:textIsSelectable="false"
|
|
|
|
tools:text="Artist" />
|
2020-09-07 17:18:41 -04:00
|
|
|
|
2021-06-01 17:59:38 -04:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/manga_status_row"
|
|
|
|
android:layout_width="wrap_content"
|
2021-06-06 10:29:28 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="4dp">
|
2020-09-07 17:18:41 -04:00
|
|
|
|
2021-09-02 17:57:54 -04:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/manga_status_icon"
|
|
|
|
android:layout_width="16dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_marginEnd="4dp"
|
|
|
|
app:srcCompat="@drawable/ic_status_unknown_24dp"
|
|
|
|
app:tint="?android:attr/textColorSecondary"
|
|
|
|
tools:ignore="ContentDescription" />
|
|
|
|
|
2021-06-01 17:59:38 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_status"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
2021-10-03 12:32:04 -04:00
|
|
|
android:textAppearance="?attr/textAppearanceBody2"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2021-06-01 17:59:38 -04:00
|
|
|
android:textIsSelectable="false"
|
|
|
|
tools:text="Status" />
|
2020-09-07 17:18:41 -04:00
|
|
|
|
2021-06-01 17:59:38 -04:00
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="4dp"
|
|
|
|
android:layout_marginEnd="4dp"
|
|
|
|
android:text="•"
|
2021-10-03 12:32:04 -04:00
|
|
|
android:textAppearance="?attr/textAppearanceBody2"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2021-06-01 17:59:38 -04:00
|
|
|
android:textIsSelectable="false"
|
|
|
|
tools:ignore="HardcodedText" />
|
2020-06-19 17:32:44 -04:00
|
|
|
|
2021-06-01 17:59:38 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_source"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
2021-10-03 12:32:04 -04:00
|
|
|
android:textAppearance="?attr/textAppearanceBody2"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2021-06-01 17:59:38 -04:00
|
|
|
android:textIsSelectable="false"
|
|
|
|
tools:text="Source" />
|
2020-06-19 17:32:44 -04:00
|
|
|
|
2020-07-04 16:07:25 -04:00
|
|
|
</LinearLayout>
|
2020-06-19 17:32:44 -04:00
|
|
|
|
2021-06-01 18:01:23 -04:00
|
|
|
</LinearLayout>
|
2020-06-19 17:32:44 -04:00
|
|
|
|
2021-08-31 17:53:37 -04:00
|
|
|
<androidx.constraintlayout.widget.Barrier
|
|
|
|
android:id="@+id/manga_info_barrier"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:barrierDirection="bottom"
|
|
|
|
app:constraint_referenced_ids="manga_cover,manga_detail" />
|
|
|
|
|
2021-06-09 17:14:57 -04:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/manga_actions"
|
2021-06-01 17:59:38 -04:00
|
|
|
android:layout_width="0dp"
|
2020-06-19 17:32:44 -04:00
|
|
|
android:layout_height="wrap_content"
|
2021-08-21 19:09:19 -04:00
|
|
|
android:layout_marginStart="16dp"
|
2021-08-31 17:53:37 -04:00
|
|
|
android:layout_marginTop="4dp"
|
2021-09-06 11:46:38 -04:00
|
|
|
android:layout_marginEnd="16dp"
|
2021-06-09 17:14:57 -04:00
|
|
|
android:orientation="horizontal"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2021-06-01 17:59:38 -04:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2021-08-31 17:53:37 -04:00
|
|
|
app:layout_constraintTop_toBottomOf="@id/manga_info_barrier">
|
2020-06-19 17:32:44 -04:00
|
|
|
|
2021-06-09 17:14:57 -04:00
|
|
|
<com.google.android.material.button.MaterialButton
|
|
|
|
android:id="@+id/btn_favorite"
|
2021-06-19 15:45:16 -04:00
|
|
|
style="@style/Widget.Tachiyomi.Button.ActionButton"
|
2021-06-09 17:14:57 -04: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 15:45:16 -04:00
|
|
|
style="@style/Widget.Tachiyomi.Button.ActionButton"
|
2021-06-09 17:14:57 -04: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 15:45:16 -04:00
|
|
|
style="@style/Widget.Tachiyomi.Button.ActionButton"
|
2021-06-09 17:14:57 -04: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-22 22:20:29 -04:00
|
|
|
|
2021-10-09 11:02:45 -04:00
|
|
|
<eu.kanade.tachiyomi.widget.MangaSummaryView
|
2021-06-04 18:51:43 -04:00
|
|
|
android:id="@+id/manga_summary_section"
|
2021-09-06 11:46:38 -04:00
|
|
|
android:layout_width="0dp"
|
2021-06-01 17:59:38 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2021-08-28 16:53:59 -04:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2021-10-09 11:02:45 -04:00
|
|
|
app:layout_constraintTop_toBottomOf="@id/manga_actions" />
|
2020-06-19 17:32:44 -04:00
|
|
|
|
2021-08-28 16:53:59 -04:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|