mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2025-01-07 13:48:11 +01:00
14 lines
597 B
XML
14 lines
597 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:layout_height="match_parent">
|
||
|
|
||
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
android:id="@+id/track_recycler"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:background="@drawable/bg_bottom_sheet_dialog_fragment"
|
||
|
tools:listitem="@layout/track_item" />
|
||
|
</FrameLayout>
|