2ed01af723
* Pair ActionToolbar with ActionMode This makes ActionToolbar an activity object that can be configured in the similar way as ActionMode * Remove action toolbar workaround now that it stays in activity layout 5924 * Set status bar color when action mode is active 6256 * Adjust fab show timing after action mode finished * Adjust action toolbar layout and animation Default corner size and use bottom sheet animation 6069 * Adjust action toolbar layout on large screen Right half of the screen
60 lines
2.6 KiB
XML
60 lines
2.6 KiB
XML
<?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>
|