2019-01-19 06:18:26 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-10-04 12:59:37 +00:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-02-23 17:39:02 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2019-06-23 17:23:50 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2019-01-19 06:18:26 +00:00
|
|
|
android:id="@+id/recentArtistContainer"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2019-12-01 11:28:57 +00:00
|
|
|
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
android:id="@+id/title"
|
2019-12-05 18:18:54 +00:00
|
|
|
android:layout_width="0dp"
|
2019-02-23 17:39:02 +00:00
|
|
|
android:layout_height="wrap_content"
|
2020-05-09 09:18:29 +00:00
|
|
|
android:paddingHorizontal="16dp"
|
2020-07-17 21:25:04 +00:00
|
|
|
android:paddingVertical="14dp"
|
2019-12-01 11:28:57 +00:00
|
|
|
android:textAppearance="@style/TextViewHeadline6"
|
|
|
|
android:textStyle="bold"
|
2019-12-05 18:18:54 +00:00
|
|
|
app:layout_constrainedWidth="true"
|
2019-10-04 12:59:37 +00:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2019-10-12 10:28:07 +00:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2020-05-11 20:23:09 +00:00
|
|
|
tools:text="@tools:sample/full_names" />
|
2019-10-04 12:59:37 +00:00
|
|
|
|
2019-01-19 06:18:26 +00:00
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/recyclerView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-10-04 12:59:37 +00:00
|
|
|
android:nestedScrollingEnabled="false"
|
2020-02-22 12:10:12 +00:00
|
|
|
android:overScrollMode="never"
|
2019-10-12 10:28:07 +00:00
|
|
|
android:visibility="gone"
|
2019-10-04 12:59:37 +00:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2019-12-01 11:28:57 +00:00
|
|
|
app:layout_constraintTop_toBottomOf="@+id/title"
|
2019-10-12 10:28:07 +00:00
|
|
|
tools:visibility="visible" />
|
2019-01-19 06:18:26 +00:00
|
|
|
|
2019-10-04 12:59:37 +00:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|