RetroMusicPlayer/app/src/main/res/layout/activity_artist_content.xml

57 lines
2 KiB
XML
Raw Normal View History

2018-11-05 19:23:07 +05:30
<?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">
2019-01-14 17:47:22 +05:30
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
</androidx.constraintlayout.widget.ConstraintLayout>
2018-11-05 19:23:07 +05:30
<androidx.appcompat.widget.AppCompatTextView
2018-12-04 21:04:26 +05:30
android:id="@+id/biographyTitle"
2018-11-05 19:23:07 +05:30
style="@style/SubTitleTextAppearance"
android:text="@string/biography"
android:visibility="gone"
tools:visibility="visible" />
<androidx.appcompat.widget.AppCompatTextView
2018-12-04 21:04:26 +05:30
android:id="@+id/biographyText"
2018-11-05 19:23:07 +05:30
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
2018-12-04 21:04:26 +05:30
android:id="@+id/albumTitle"
2018-11-05 19:23:07 +05:30
style="@style/SubTitleTextAppearance"
android:text="@string/albums" />
<androidx.recyclerview.widget.RecyclerView
2018-12-04 21:04:26 +05:30
android:id="@+id/albumRecyclerView"
2018-11-05 19:23:07 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:nestedScrollingEnabled="false" />
<androidx.appcompat.widget.AppCompatTextView
2018-12-04 21:04:26 +05:30
android:id="@+id/songTitle"
2018-11-05 19:23:07 +05:30
style="@style/SubTitleTextAppearance"
android:text="@string/songs" />
<androidx.recyclerview.widget.RecyclerView
2018-12-04 21:04:26 +05:30
android:id="@+id/recyclerView"
2018-11-05 19:23:07 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:nestedScrollingEnabled="false" />
2018-11-13 09:00:08 +05:30
<Space
android:layout_width="match_parent"
android:layout_height="72dp" />
2018-11-05 19:23:07 +05:30
</LinearLayout>