2020-03-01 03:58:55 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-03-02 11:18:48 +01:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-03-01 03:58:55 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-03-02 11:18:48 +01:00
|
|
|
android:id="@id/frame_layout"
|
2020-03-02 02:44:24 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-03-02 11:18:48 +01:00
|
|
|
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">
|
2020-03-01 03:58:55 +01:00
|
|
|
|
2020-03-02 02:44:24 +01:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/recycler"
|
2020-03-01 03:58:55 +01:00
|
|
|
android:layout_width="match_parent"
|
2020-03-02 02:44:24 +01:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:clipToPadding="false"
|
|
|
|
android:descendantFocusability="blocksDescendants"
|
|
|
|
android:nestedScrollingEnabled="false"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/chapters_title"
|
2020-03-02 11:18:48 +01:00
|
|
|
tools:listitem="@layout/chapters_mat_item"/>
|
2020-03-01 03:58:55 +01:00
|
|
|
|
|
|
|
<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" />
|
|
|
|
|
2020-03-02 11:18:48 +01:00
|
|
|
|
|
|
|
|
2020-03-01 03:58:55 +01:00
|
|
|
<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/description_cover"
|
|
|
|
android:visibility="invisible" />
|
2020-03-02 11:18:48 +01:00
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
|
|
|
<eu.davidea.fastscroller.FastScroller
|
|
|
|
android:id="@+id/fast_scroller"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="end"
|
|
|
|
app:fastScrollerBubbleEnabled="false"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
</FrameLayout>
|