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