2020-04-03 07:04:44 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-04-04 19:47:32 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-04-03 07:04:44 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/recents_layout"
|
|
|
|
android:layout_width="match_parent"
|
2020-04-04 19:47:32 +02:00
|
|
|
android:layout_height="match_parent">
|
2020-04-03 07:04:44 +02:00
|
|
|
|
2020-04-04 19:47:32 +02:00
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
|
|
|
android:id="@+id/swipe_refresh"
|
2020-04-03 07:04:44 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-04-04 19:47:32 +02:00
|
|
|
android:layout_height="match_parent">
|
2020-04-03 07:04:44 +02:00
|
|
|
|
2020-04-04 19:47:32 +02:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/frame_layout"
|
2020-04-03 07:04:44 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-04-04 19:47:32 +02:00
|
|
|
android:background="?android:attr/colorBackground">
|
2020-04-03 07:04:44 +02:00
|
|
|
|
2020-04-04 19:47:32 +02:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/recycler"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:clipToPadding="false"
|
2020-05-03 18:46:17 +02:00
|
|
|
android:background="?android:attr/colorBackground"
|
2020-04-06 21:06:17 +02:00
|
|
|
tools:listitem="@layout/recent_manga_item" />
|
2020-04-04 19:47:32 +02:00
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
2020-04-03 07:04:44 +02:00
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/shadow"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="24dp"
|
|
|
|
android:alpha="0.5"
|
|
|
|
android:background="@drawable/shape_gradient_top_shadow"
|
|
|
|
android:paddingBottom="10dp"
|
2021-03-29 08:55:40 +02:00
|
|
|
app:layout_anchor="@id/download_bottom_sheet"
|
2020-04-04 19:47:32 +02:00
|
|
|
app:layout_anchorGravity="top" />
|
2020-04-03 07:04:44 +02:00
|
|
|
<!-- Adding bottom sheet after main content -->
|
2021-03-29 08:55:40 +02:00
|
|
|
<include layout="@layout/download_bottom_sheet"
|
|
|
|
android:id="@+id/download_bottom_sheet"/>
|
2020-04-03 07:04:44 +02:00
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/shadow2"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="8dp"
|
|
|
|
android:layout_gravity="bottom"
|
|
|
|
android:alpha="0.25"
|
|
|
|
android:background="@drawable/shape_gradient_top_shadow" />
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|