mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-15 19:45:09 +01:00
0244e1edb4
Also chapters with an unknown volume now show the chapter name instead of just "unknown"
61 lines
2.2 KiB
XML
61 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout 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:id="@+id/frame_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="?android:colorBackground">
|
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
|
android:id="@+id/swipe_refresh"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="?android:colorBackground">
|
|
|
|
|
|
<FrameLayout
|
|
android:id="@+id/linear_recycler_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/recycler"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:clipToPadding="false"
|
|
tools:listitem="@layout/chapters_item" />
|
|
</FrameLayout>
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
|
|
|
<eu.kanade.tachiyomi.ui.library.MaterialFastScroll
|
|
android:id="@+id/fast_scroller"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:fastScrollerBubbleEnabled="true" />
|
|
|
|
<View
|
|
android:id="@+id/full_backdrop"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:alpha="0"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:foreground="@color/md_black_1000"
|
|
android:visibility="invisible"
|
|
tools:background="@color/md_black_1000" />
|
|
|
|
|
|
<ImageView
|
|
android:id="@+id/manga_cover_full"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginTop="16dp"
|
|
android:layout_marginEnd="16dp"
|
|
android:layout_marginBottom="16dp"
|
|
android:contentDescription="@string/cover_of_image"
|
|
android:elevation="10dp"
|
|
android:translationZ="20dp"
|
|
android:visibility="invisible" />
|
|
</FrameLayout> |