tachiyomi/app/src/main/res/layout/tracking_bottom_sheet.xml
Jay e2410fafb8 Fixing bottom sheets for notched phones
Starting to turn on bottom sheets now
Also general fixes on notched tablets (if those exists, I think they do?)
2020-04-23 03:23:36 -04:00

16 lines
664 B
XML

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/display_bottom_sheet"
android:layout_width="match_parent"
android:background="@drawable/bottom_sheet_rounded_background"
android:layout_height="match_parent">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/track_recycler"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="5dp"
android:clipToPadding="false"
tools:listitem="@layout/track_item" />
</FrameLayout>