2019-01-19 06:18:26 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<LinearLayout 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-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-02-23 17:39:02 +00:00
|
|
|
<LinearLayout
|
2019-03-18 17:46:52 +00:00
|
|
|
android:layout_width="wrap_content"
|
2019-02-23 17:39:02 +00:00
|
|
|
android:layout_height="wrap_content"
|
2019-03-18 17:46:52 +00:00
|
|
|
android:layout_margin="12dp"
|
|
|
|
android:background="@drawable/material_design_outline"
|
|
|
|
android:backgroundTint="?dividerColor"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:paddingStart="12dp"
|
|
|
|
android:paddingTop="6dp"
|
|
|
|
android:paddingEnd="12dp"
|
|
|
|
android:paddingBottom="6dp">
|
2019-02-23 17:39:02 +00:00
|
|
|
|
|
|
|
<code.name.monkey.retromusic.views.IconImageView
|
|
|
|
android:id="@+id/sectionIcon"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-03-18 17:46:52 +00:00
|
|
|
android:layout_marginEnd="12dp"
|
|
|
|
app:srcCompat="@drawable/ic_person_white_24dp" />
|
2019-02-23 17:39:02 +00:00
|
|
|
|
2019-05-16 19:07:21 +00:00
|
|
|
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
|
2019-02-23 17:39:02 +00:00
|
|
|
android:id="@+id/sectionTitle"
|
2019-03-18 17:46:52 +00:00
|
|
|
style="@style/SubTitleTextAppearance"
|
|
|
|
android:padding="0dp"
|
|
|
|
android:text="@string/for_you" />
|
2019-01-19 06:18:26 +00:00
|
|
|
|
2019-02-23 17:39:02 +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"
|
|
|
|
android:nestedScrollingEnabled="false" />
|
|
|
|
|
|
|
|
</LinearLayout>
|