mirror of
https://github.com/cmclark00/RetroMusicPlayer.git
synced 2025-05-22 18:05:28 +01:00
32 lines
1.2 KiB
XML
32 lines
1.2 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:id="@+id/container"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical"
|
||
|
android:paddingBottom="4dp">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/title"
|
||
|
fontPath="@string/circular_std_black"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:padding="12dp"
|
||
|
android:text="Recent albums"
|
||
|
android:textAppearance="@style/TextAppearance.AppCompat.Title"
|
||
|
android:textColor="?android:attr/textColorPrimary"
|
||
|
tools:ignore="MissingPrefix" />
|
||
|
|
||
|
<android.support.v7.widget.RecyclerView
|
||
|
android:id="@+id/recycler_view"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:nestedScrollingEnabled="false" />
|
||
|
|
||
|
<View
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="1dp"
|
||
|
android:layout_margin="12dp"
|
||
|
android:background="?attr/dividerColor" />
|
||
|
</LinearLayout>
|