2020-03-10 07:34:00 +01:00
|
|
|
<?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"
|
2020-04-19 23:28:59 +02:00
|
|
|
android:background="@drawable/bottom_sheet_rounded_background"
|
2020-03-10 07:34:00 +01:00
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/track_recycler"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-03-21 04:16:59 +01:00
|
|
|
android:paddingTop="5dp"
|
2020-04-23 09:23:36 +02:00
|
|
|
android:clipToPadding="false"
|
2020-03-10 07:34:00 +01:00
|
|
|
tools:listitem="@layout/track_item" />
|
|
|
|
</FrameLayout>
|