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:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-09-16 18:29:31 +05:30
|
|
|
android:orientation="vertical">
|
2019-01-19 11:48:26 +05:30
|
|
|
|
2020-08-13 13:54:36 +05:30
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/clickable_area"
|
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"
|
2021-09-16 18:29:31 +05:30
|
|
|
android:background="?attr/rectSelector"
|
2020-08-13 13:54:36 +05:30
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:orientation="horizontal"
|
2019-10-04 18:29:37 +05:30
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2020-08-13 13:54:36 +05:30
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
2019-10-04 18:29:37 +05:30
|
|
|
|
2020-08-13 13:54:36 +05:30
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:padding="16dp"
|
|
|
|
android:textAppearance="@style/TextViewHeadline6"
|
|
|
|
android:textStyle="bold"
|
|
|
|
tools:text="@tools:sample/full_names" />
|
|
|
|
|
2020-08-21 16:12:21 +05:30
|
|
|
<code.name.monkey.retromusic.views.AccentIcon
|
2020-08-13 13:54:36 +05:30
|
|
|
android:id="@+id/arrow"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="16dp"
|
2020-08-21 16:12:21 +05:30
|
|
|
app:srcCompat="@drawable/ic_arrow_forward" />
|
2020-08-13 13:54:36 +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"
|
2021-12-13 12:01:26 +05:30
|
|
|
android:overScrollMode="@integer/overScrollMode"
|
2019-10-04 18:29:37 +05:30
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
2020-08-13 13:54:36 +05:30
|
|
|
app:layout_constraintTop_toBottomOf="@+id/clickable_area"
|
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>
|