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-10-04 18:29:37 +05:30
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/titleContainer"
|
|
|
|
android:layout_width="match_parent"
|
2019-02-23 23:09:02 +05:30
|
|
|
android:layout_height="wrap_content"
|
2019-10-04 18:38:54 +05:30
|
|
|
android:background="?rectSelector"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
2019-10-04 18:29:37 +05:30
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:orientation="vertical"
|
2019-10-09 20:04:01 +05:30
|
|
|
android:padding="16dp">
|
2019-10-04 18:29:37 +05:30
|
|
|
|
|
|
|
<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"
|
|
|
|
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 20:04:01 +05:30
|
|
|
android:visibility="gone"
|
2019-10-04 18:29:37 +05:30
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2019-10-04 18:38:54 +05:30
|
|
|
app:srcCompat="@drawable/ic_arrow_forward_white_24dp"
|
|
|
|
app:tint="?colorOnPrimary" />
|
2019-10-04 18:29:37 +05:30
|
|
|
</LinearLayout>
|
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"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/titleContainer" />
|
2019-01-19 11:48:26 +05:30
|
|
|
|
2019-10-04 18:29:37 +05:30
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|