1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?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"
- android:clipToPadding="false"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toStartOf="@id/chapters_recycler"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent"
- app:layout_constraintWidth_max="@dimen/tablet_sidebar_max_width"
- app:layout_constraintWidth_percent="0.5"
- 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"
- app:layout_constraintTop_toTopOf="parent"
- tools:listitem="@layout/chapters_item" />
- </androidx.constraintlayout.widget.ConstraintLayout>
- </eu.kanade.tachiyomi.widget.ThemedSwipeRefreshLayout>
- <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" />
- </androidx.coordinatorlayout.widget.CoordinatorLayout>
|