2020-06-19 17:32:44 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout 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:orientation="vertical"
|
|
|
|
tools:context=".ui.browse.source.browse.BrowseSourceController">
|
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/backdrop"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="0dp"
|
2020-09-07 17:18:41 -04:00
|
|
|
android:layout_marginBottom="?attr/actionBarSize"
|
2020-06-19 17:32:44 -04:00
|
|
|
android:alpha="0.2"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
tools:background="@mipmap/ic_launcher" />
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="88dp"
|
2020-09-07 17:18:41 -04:00
|
|
|
android:layout_marginBottom="?attr/actionBarSize"
|
2020-06-19 17:32:44 -04:00
|
|
|
android:background="@drawable/manga_info_gradient"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent" />
|
|
|
|
|
2020-07-04 16:07:25 -04:00
|
|
|
<LinearLayout
|
2020-06-19 17:32:44 -04:00
|
|
|
android:id="@+id/manga_info"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-07-04 16:07:25 -04:00
|
|
|
android:orientation="horizontal"
|
2020-09-07 17:18:41 -04:00
|
|
|
android:paddingStart="16dp"
|
|
|
|
android:paddingTop="64dp"
|
|
|
|
android:paddingEnd="16dp"
|
|
|
|
android:paddingBottom="16dp"
|
2020-06-19 17:32:44 -04:00
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
2020-07-11 12:13:05 -04:00
|
|
|
<eu.kanade.tachiyomi.ui.manga.info.MangaCoverImageView
|
2020-06-19 17:32:44 -04:00
|
|
|
android:id="@+id/manga_cover"
|
2020-07-04 16:07:25 -04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-06-19 17:32:44 -04:00
|
|
|
android:background="@drawable/rounded_rectangle"
|
|
|
|
android:contentDescription="@string/description_cover"
|
2020-09-07 17:18:41 -04:00
|
|
|
android:maxWidth="100dp"
|
2020-06-19 17:32:44 -04:00
|
|
|
tools:src="@mipmap/ic_launcher" />
|
|
|
|
|
2020-06-20 22:30:02 -04:00
|
|
|
<LinearLayout
|
2020-07-04 16:07:25 -04:00
|
|
|
android:layout_width="wrap_content"
|
2020-06-19 17:32:44 -04:00
|
|
|
android:layout_height="wrap_content"
|
2020-09-07 17:18:41 -04:00
|
|
|
android:layout_gravity="bottom"
|
2020-07-04 16:07:25 -04:00
|
|
|
android:layout_marginStart="16dp"
|
2020-09-07 17:18:41 -04:00
|
|
|
android:layout_marginBottom="16dp"
|
|
|
|
android:orientation="vertical">
|
2020-06-19 17:32:44 -04: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="3"
|
|
|
|
android:text="@string/manga_info_full_title_label"
|
|
|
|
android:textIsSelectable="false"
|
|
|
|
app:autoSizeMaxTextSize="20sp"
|
|
|
|
app:autoSizeMinTextSize="12sp"
|
|
|
|
app:autoSizeStepGranularity="2sp"
|
2020-06-20 22:30:02 -04:00
|
|
|
app:autoSizeTextType="uniform" />
|
2020-06-19 17:32:44 -04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_author"
|
|
|
|
style="@style/TextAppearance.Regular.Body1.Secondary"
|
2020-06-20 22:30:02 -04:00
|
|
|
android:layout_width="wrap_content"
|
2020-06-19 17:32:44 -04:00
|
|
|
android:layout_height="wrap_content"
|
2020-09-07 17:18:41 -04:00
|
|
|
android:layout_marginTop="4dp"
|
2020-06-19 17:32:44 -04:00
|
|
|
android:textIsSelectable="false"
|
|
|
|
tools:text="Author" />
|
|
|
|
|
2020-06-20 22:30:02 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/manga_artist"
|
|
|
|
style="@style/TextAppearance.Regular.Body1.Secondary"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textIsSelectable="false"
|
|
|
|
tools:text="Artist" />
|
|
|
|
|
2020-09-07 17:18:41 -04:00
|
|
|
<LinearLayout
|
2020-06-20 22:30:02 -04:00
|
|
|
android:layout_width="wrap_content"
|
2020-06-19 17:32:44 -04:00
|
|
|
android:layout_height="wrap_content"
|
2020-09-07 17:18:41 -04:00
|
|
|
android:layout_marginTop="4dp">
|
|
|
|
|
|
|
|
<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" />
|
|
|
|
|
|
|
|
<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" />
|
|
|
|
|
|
|
|
<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" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
2020-06-19 17:32:44 -04:00
|
|
|
|
2020-06-20 22:30:02 -04:00
|
|
|
</LinearLayout>
|
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
|
|
|
|
2020-09-07 17:18:41 -04:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
2020-06-19 17:32:44 -04:00
|
|
|
|
2020-09-07 17:18:41 -04:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
2020-06-19 17:32:44 -04:00
|
|
|
|
2020-09-07 17:18:41 -04:00
|
|
|
<androidx.appcompat.widget.AppCompatButton
|
|
|
|
android:id="@+id/btn_favorite"
|
|
|
|
style="@style/Theme.Widget.Button.Action"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:checkable="true"
|
|
|
|
android:text="@string/add_to_library"
|
|
|
|
app:drawableTopCompat="@drawable/ic_favorite_border_24dp"
|
|
|
|
app:layout_constraintEnd_toStartOf="@+id/btn_tracking"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
2020-07-12 17:16:13 -04:00
|
|
|
|
2020-09-07 17:18:41 -04:00
|
|
|
<androidx.appcompat.widget.AppCompatButton
|
|
|
|
android:id="@+id/btn_tracking"
|
|
|
|
style="@style/Theme.Widget.Button.Action"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
android:checkable="true"
|
|
|
|
android:text="@string/manga_tracking_tab"
|
|
|
|
android:visibility="gone"
|
|
|
|
app:drawableTopCompat="@drawable/ic_sync_24dp"
|
|
|
|
app:layout_constraintEnd_toStartOf="@+id/btn_webview"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/btn_favorite"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
tools:visibility="visible" />
|
2020-07-12 17:16:13 -04:00
|
|
|
|
2020-09-07 17:18:41 -04:00
|
|
|
<androidx.appcompat.widget.AppCompatButton
|
|
|
|
android:id="@+id/btn_webview"
|
|
|
|
style="@style/Theme.Widget.Button.Action"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
android:text="@string/action_web_view"
|
|
|
|
android:visibility="gone"
|
|
|
|
app:drawableTopCompat="@drawable/ic_public_24dp"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toEndOf="@+id/btn_tracking"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
tools:visibility="visible" />
|
2020-06-19 17:32:44 -04:00
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
2020-07-18 10:57:11 -04:00
|
|
|
<LinearLayout
|
2020-07-31 12:58:13 -04:00
|
|
|
android:id="@+id/manga_summary_section"
|
2020-06-19 17:32:44 -04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-09-07 17:18:41 -04:00
|
|
|
android:layout_marginTop="8dp"
|
2020-07-18 10:57:11 -04:00
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:orientation="vertical">
|
2020-06-23 08:51:51 -04:00
|
|
|
|
2020-07-18 10:57:11 -04:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
android:layout_width="match_parent"
|
2020-06-23 08:51:51 -04:00
|
|
|
android:layout_height="wrap_content"
|
2020-07-18 10:57:11 -04:00
|
|
|
android:paddingStart="16dp"
|
|
|
|
android:paddingEnd="16dp">
|
2020-06-23 08:51:51 -04:00
|
|
|
|
2020-09-07 17:18:41 -04:00
|
|
|
<ImageButton
|
2020-07-18 10:57:11 -04:00
|
|
|
android:id="@+id/manga_info_toggle"
|
2020-09-07 17:18:41 -04:00
|
|
|
android:layout_width="32dp"
|
|
|
|
android:layout_height="32dp"
|
2020-07-18 10:57:11 -04:00
|
|
|
android:layout_alignParentEnd="true"
|
2020-09-07 17:18:41 -04:00
|
|
|
android:background="?selectableItemBackgroundBorderless"
|
|
|
|
android:contentDescription="@string/manga_info_expand"
|
2020-07-18 10:57:11 -04:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2020-09-07 17:18:41 -04:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:srcCompat="@drawable/ic_baseline_expand_more_24dp"
|
|
|
|
app:tint="?attr/colorOnPrimary" />
|
2020-06-19 17:32:44 -04:00
|
|
|
|
2020-07-18 10:57:11 -04:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
2020-06-19 17:32:44 -04:00
|
|
|
|
2020-07-18 10:57:11 -04:00
|
|
|
<TextView
|
2020-07-31 12:58:13 -04:00
|
|
|
android:id="@+id/manga_summary_text"
|
2020-07-18 10:57:11 -04:00
|
|
|
style="@style/TextAppearance.Regular.Body1.Secondary"
|
2020-06-19 17:32:44 -04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
2020-07-18 10:57:11 -04:00
|
|
|
android:clickable="true"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:focusable="true"
|
|
|
|
android:maxLines="2"
|
|
|
|
android:textIsSelectable="false"
|
|
|
|
tools:text="Summary" />
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/manga_genres_tags_wrapper"
|
2020-06-19 17:32:44 -04:00
|
|
|
android:layout_width="match_parent"
|
2020-07-23 18:09:47 -04:00
|
|
|
android:layout_height="wrap_content">
|
2020-06-19 17:32:44 -04:00
|
|
|
|
|
|
|
<com.google.android.material.chip.ChipGroup
|
2020-07-18 10:57:11 -04:00
|
|
|
android:id="@+id/manga_genres_tags_full_chips"
|
|
|
|
android:layout_width="match_parent"
|
2020-06-19 17:32:44 -04:00
|
|
|
android:layout_height="wrap_content"
|
2020-07-18 10:57:11 -04:00
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
2020-07-23 18:09:47 -04:00
|
|
|
android:paddingTop="8dp"
|
|
|
|
android:paddingBottom="8dp"
|
2020-07-18 10:57:11 -04:00
|
|
|
android:visibility="gone"
|
|
|
|
app:chipSpacingHorizontal="4dp" />
|
2020-06-19 17:32:44 -04:00
|
|
|
|
2020-07-18 10:57:11 -04:00
|
|
|
<HorizontalScrollView
|
|
|
|
android:id="@+id/manga_genres_tags_compact"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:requiresFadingEdge="horizontal">
|
|
|
|
|
|
|
|
<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"
|
2020-07-23 18:09:47 -04:00
|
|
|
android:paddingTop="8dp"
|
2020-07-18 10:57:11 -04:00
|
|
|
android:paddingEnd="16dp"
|
2020-07-23 18:09:47 -04:00
|
|
|
android:paddingBottom="8dp"
|
2020-07-18 10:57:11 -04:00
|
|
|
app:chipSpacingHorizontal="4dp"
|
|
|
|
app:singleLine="true" />
|
|
|
|
|
|
|
|
</HorizontalScrollView>
|
|
|
|
|
|
|
|
</FrameLayout>
|
2020-06-19 17:32:44 -04:00
|
|
|
|
2020-07-18 10:57:11 -04:00
|
|
|
</LinearLayout>
|
2020-06-19 17:32:44 -04:00
|
|
|
|
|
|
|
</LinearLayout>
|