48 lines
1.7 KiB
XML
48 lines
1.7 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"
|
||
|
style="@style/SubTitleTextAppearance"
|
||
|
android:text="@string/biography"
|
||
|
android:visibility="gone"
|
||
|
tools:visibility="visible" />
|
||
|
|
||
|
<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"
|
||
|
tools:visibility="visible" />
|
||
|
|
||
|
<androidx.appcompat.widget.AppCompatTextView
|
||
|
android:id="@+id/album_title"
|
||
|
style="@style/SubTitleTextAppearance"
|
||
|
android:text="@string/albums" />
|
||
|
|
||
|
<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"
|
||
|
style="@style/SubTitleTextAppearance"
|
||
|
android:text="@string/songs" />
|
||
|
|
||
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
android:id="@+id/recycler_view"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:nestedScrollingEnabled="false" />
|
||
|
|
||
|
</LinearLayout>
|