mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-15 23:55:10 +01:00
d0def563c8
Updated Drag handle icon
Removed outline fron update button in extensions
Moved "view options" to filter sheet as "display options"
Removed freeform cover option from library 😔
Added swipe refresh to recents page
Removed a few overflows
50 lines
1.9 KiB
XML
50 lines
1.9 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:id="@+id/recents_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
|
android:id="@+id/swipe_refresh"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<FrameLayout
|
|
android:id="@+id/frame_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="?android:attr/colorBackground">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/recycler"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:clipToPadding="false"
|
|
tools:listitem="@layout/catalogue_main_controller_card" />
|
|
|
|
</FrameLayout>
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
|
|
|
<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"
|
|
app:layout_anchor="@id/dl_bottom_sheet"
|
|
app:layout_anchorGravity="top" />
|
|
<!-- Adding bottom sheet after main content -->
|
|
<include layout="@layout/download_bottom_sheet" />
|
|
|
|
<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>
|