2021-05-23 18:36:47 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout 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="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<eu.kanade.tachiyomi.widget.ThemedSwipeRefreshLayout
|
|
|
|
android:id="@+id/swipe_refresh"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
android:id="@+id/linear_recycler_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/info_recycler"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
2021-06-06 16:50:00 +02:00
|
|
|
android:clipToPadding="false"
|
2021-05-23 18:36:47 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toStartOf="@id/chapters_recycler"
|
2021-05-29 04:40:17 +02:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2021-11-19 20:06:43 +01:00
|
|
|
app:layout_constraintWidth_max="@dimen/tablet_sidebar_max_width"
|
2021-05-29 04:40:17 +02:00
|
|
|
app:layout_constraintWidth_percent="0.5"
|
2021-05-23 18:36:47 +02:00
|
|
|
tools:itemCount="1"
|
|
|
|
tools:listitem="@layout/manga_info_header" />
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/chapters_recycler"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:clipToPadding="false"
|
|
|
|
android:paddingBottom="@dimen/fab_list_padding"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toEndOf="@id/info_recycler"
|
2021-05-29 04:40:17 +02:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2021-05-23 18:36:47 +02:00
|
|
|
tools:listitem="@layout/chapters_item" />
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
|
|
|
</eu.kanade.tachiyomi.widget.ThemedSwipeRefreshLayout>
|
|
|
|
|
2021-06-04 05:00:41 +02:00
|
|
|
<eu.kanade.tachiyomi.widget.MaterialFastScroll
|
|
|
|
android:id="@+id/fast_scroller"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_gravity="end"
|
|
|
|
app:fastScrollerBubbleEnabled="false"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
2021-05-23 18:36:47 +02:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|