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-10-04 12:59:37 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/titleContainer"
|
|
|
|
android:layout_width="match_parent"
|
2019-02-23 17:39:02 +00:00
|
|
|
android:layout_height="wrap_content"
|
2019-10-04 13:08:54 +00:00
|
|
|
android:background="?rectSelector"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
2019-10-04 12:59:37 +00:00
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="horizontal"
|
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-10-12 10:28:07 +00:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
tools:visibility="visible">
|
2019-10-04 12:59:37 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:orientation="vertical"
|
2019-10-09 14:34:01 +00:00
|
|
|
android:padding="16dp">
|
2019-10-04 12:59:37 +00:00
|
|
|
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="@style/TextViewHeadline6"
|
|
|
|
android:textStyle="bold"
|
|
|
|
tools:text="@tools:sample/full_names" />
|
|
|
|
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
android:id="@+id/text"
|
2019-10-24 20:08:09 +00:00
|
|
|
android:visibility="gone"
|
2019-10-04 12:59:37 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="@style/TextViewCaption"
|
|
|
|
tools:text="@tools:sample/full_names" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
|
|
android:id="@+id/arrow"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0"
|
|
|
|
android:padding="16dp"
|
2019-10-09 14:34:01 +00:00
|
|
|
android:visibility="gone"
|
2019-10-04 12:59:37 +00:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2019-10-04 13:08:54 +00:00
|
|
|
app:srcCompat="@drawable/ic_arrow_forward_white_24dp"
|
|
|
|
app:tint="?colorOnPrimary" />
|
2019-10-04 12:59:37 +00:00
|
|
|
</LinearLayout>
|
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"
|
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-10-12 10:28:07 +00:00
|
|
|
app:layout_constraintTop_toBottomOf="@+id/titleContainer"
|
|
|
|
tools:visibility="visible" />
|
2019-01-19 06:18:26 +00:00
|
|
|
|
2019-10-04 12:59:37 +00:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|