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-07 19:52:49 +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
|
2020-03-07 19:52:49 +01:00
|
|
|
android:id="@+id/swipe_refresh"
|
2020-03-02 11:18:48 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="?android:colorBackground">
|
2020-03-01 03:58:55 +01:00
|
|
|
|
2020-04-14 02:10:50 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/linear_recycler_layout"
|
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"
|
2020-04-14 02:10:50 +02:00
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/recycler"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:clipToPadding="false"
|
|
|
|
android:layout_weight="0.25"
|
|
|
|
tools:listitem="@layout/chapters_item" />
|
|
|
|
</LinearLayout>
|
2020-03-02 11:18:48 +01:00
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
2020-04-07 05:52:15 +02:00
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
android:id="@+id/fast_scroll_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<com.reddit.indicatorfastscroll.FastScrollerView
|
|
|
|
android:id="@+id/fast_scroller"
|
2020-04-09 08:01:56 +02:00
|
|
|
android:layout_width="25dp"
|
2020-04-26 23:47:32 +02:00
|
|
|
android:layout_height="wrap_content"
|
2020-04-07 05:52:15 +02:00
|
|
|
android:layout_gravity="end"
|
2020-04-14 02:10:50 +02:00
|
|
|
android:elevation="10dp"
|
2020-04-07 05:52:15 +02:00
|
|
|
android:paddingStart="1dp"
|
2020-04-14 02:10:50 +02:00
|
|
|
android:paddingTop="8dp"
|
2020-04-07 05:52:15 +02:00
|
|
|
android:paddingEnd="0dp"
|
2020-04-14 02:10:50 +02:00
|
|
|
android:paddingBottom="8dp"
|
2020-04-26 23:47:32 +02:00
|
|
|
app:layout_constrainedHeight="true"
|
2020-04-14 02:10:50 +02:00
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
app:iconColor="?android:attr/textColorPrimary"
|
2020-04-07 05:52:15 +02:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
android:id="@+id/text_view_m"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="50dp"
|
2020-04-14 02:10:50 +02:00
|
|
|
android:alpha="0"
|
2020-04-07 05:52:15 +02:00
|
|
|
android:background="@drawable/round_textview_background"
|
|
|
|
android:padding="8dp"
|
|
|
|
android:textColor="@android:color/white"
|
|
|
|
app:layout_constraintEnd_toStartOf="@id/fast_scroller"
|
|
|
|
app:layout_constraintTop_toTopOf="@id/fast_scroller"
|
2020-04-14 02:10:50 +02:00
|
|
|
tools:alpha="1"
|
2020-04-07 05:52:15 +02:00
|
|
|
tools:text="sdfsdf" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
2020-03-07 19:52:49 +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" />
|
|
|
|
|
|
|
|
|
|
|
|
<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"
|
2020-04-09 02:32:36 +02:00
|
|
|
android:contentDescription="@string/cover_of_image"
|
2020-04-14 02:10:50 +02:00
|
|
|
android:elevation="10dp"
|
|
|
|
android:translationZ="20dp"
|
2020-03-07 19:52:49 +01:00
|
|
|
android:visibility="invisible" />
|
2020-03-02 11:18:48 +01:00
|
|
|
</FrameLayout>
|