mirror of
https://github.com/cmclark00/RetroMusicPlayer.git
synced 2025-05-23 10:25:20 +01:00
72 lines
2.8 KiB
XML
72 lines
2.8 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:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<androidx.appcompat.widget.AppCompatTextView
|
||
|
android:id="@+id/biography_title"
|
||
|
fontPath="@string/circular_std_black"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:paddingStart="24dp"
|
||
|
android:paddingTop="12dp"
|
||
|
android:paddingEnd="24dp"
|
||
|
android:paddingBottom="12dp"
|
||
|
android:text="@string/biography"
|
||
|
android:textAppearance="@style/TextAppearance.AppCompat.Subhead"
|
||
|
android:textColor="?android:attr/textColorPrimary"
|
||
|
android:visibility="gone"
|
||
|
tools:ignore="MissingPrefix" />
|
||
|
|
||
|
<androidx.appcompat.widget.AppCompatTextView
|
||
|
android:id="@+id/biography"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:ellipsize="end"
|
||
|
android:maxLines="4"
|
||
|
android:padding="16dp"
|
||
|
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
|
||
|
android:visibility="gone" />
|
||
|
|
||
|
<androidx.appcompat.widget.AppCompatTextView
|
||
|
android:id="@+id/album_title"
|
||
|
fontPath="@string/circular_std_black"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:paddingStart="24dp"
|
||
|
android:paddingTop="12dp"
|
||
|
android:paddingEnd="24dp"
|
||
|
android:paddingBottom="12dp"
|
||
|
android:text="@string/albums"
|
||
|
android:textAppearance="@style/TextAppearance.AppCompat.Subhead"
|
||
|
android:textColor="?android:attr/textColorPrimary" />
|
||
|
|
||
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
android:id="@+id/album_recycler_view"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:nestedScrollingEnabled="false" />
|
||
|
|
||
|
<androidx.appcompat.widget.AppCompatTextView
|
||
|
android:id="@+id/song_title"
|
||
|
fontPath="@string/circular_std_black"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:paddingStart="24dp"
|
||
|
android:paddingTop="12dp"
|
||
|
android:paddingEnd="24dp"
|
||
|
android:paddingBottom="12dp"
|
||
|
android:text="@string/songs"
|
||
|
android:textAppearance="@style/TextAppearance.AppCompat.Subhead"
|
||
|
android:textColor="?android:attr/textColorPrimary"
|
||
|
tools:ignore="MissingPrefix" />
|
||
|
|
||
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
android:id="@+id/recycler_view"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:nestedScrollingEnabled="false" />
|
||
|
|
||
|
</LinearLayout>
|