mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2025-01-03 22:51:53 +01:00
e2410fafb8
Starting to turn on bottom sheets now Also general fixes on notched tablets (if those exists, I think they do?)
16 lines
664 B
XML
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> |