30 lines
No EOL
1.2 KiB
XML
30 lines
No EOL
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:theme="@style/Theme.Base"
|
|
android:background="@color/background">
|
|
|
|
<TextView
|
|
android:id="@+id/queue_header"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:padding="@dimen/padding_medium"
|
|
android:text="@string/label_queue"
|
|
android:fontFamily="@font/inter_black"
|
|
android:textAppearance="@style/TextAppearance.Toolbar.Header" />
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/queue_recycler"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
tools:listitem="@layout/item_song"
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager" />
|
|
|
|
</LinearLayout>
|
|
</layout> |