2018-07-27 18:37:33 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/recent_artist_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
2018-11-05 19:23:07 +05:30
|
|
|
android:visibility="gone">
|
|
|
|
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-11-05 19:23:07 +05:30
|
|
|
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
|
2018-09-23 15:34:43 +05:30
|
|
|
style="@style/SubTitleTextAppearance"
|
|
|
|
android:text="@string/recent_artists" />
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-11-05 19:23:07 +05:30
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2018-07-27 18:37:33 +05:30
|
|
|
android:id="@+id/recycler_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:nestedScrollingEnabled="false" />
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
2018-09-23 15:34:43 +05:30
|
|
|
android:layout_margin="8dp"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:background="?attr/dividerColor" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/recent_albums_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
2018-11-05 19:23:07 +05:30
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-11-05 19:23:07 +05:30
|
|
|
|
|
|
|
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
|
2018-09-23 15:34:43 +05:30
|
|
|
style="@style/SubTitleTextAppearance"
|
|
|
|
android:text="@string/recent_albums" />
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-11-05 19:23:07 +05:30
|
|
|
|
2018-07-27 18:37:33 +05:30
|
|
|
<code.name.monkey.retromusic.views.MetalRecyclerViewPager
|
|
|
|
android:id="@+id/recent_album"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:nestedScrollingEnabled="false"
|
2018-11-20 20:57:59 +05:30
|
|
|
app:itemMargin="96dp" />
|
2018-07-27 18:37:33 +05:30
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
2018-09-23 15:34:43 +05:30
|
|
|
android:layout_margin="8dp"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:background="?attr/dividerColor" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/top_artist_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:visibility="gone">
|
|
|
|
|
2018-11-05 19:23:07 +05:30
|
|
|
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
|
2018-09-23 15:34:43 +05:30
|
|
|
style="@style/SubTitleTextAppearance"
|
|
|
|
android:text="@string/top_artists" />
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2018-07-27 18:37:33 +05:30
|
|
|
android:id="@+id/top_artist"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:nestedScrollingEnabled="false" />
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
2018-09-23 15:34:43 +05:30
|
|
|
android:layout_margin="8dp"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:background="?attr/dividerColor" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/top_albums_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:visibility="gone">
|
|
|
|
|
2018-11-05 19:23:07 +05:30
|
|
|
|
|
|
|
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
|
2018-09-23 15:34:43 +05:30
|
|
|
style="@style/SubTitleTextAppearance"
|
|
|
|
android:text="@string/top_albums" />
|
2018-07-27 18:37:33 +05:30
|
|
|
|
|
|
|
<code.name.monkey.retromusic.views.MetalRecyclerViewPager
|
|
|
|
android:id="@+id/top_album"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:nestedScrollingEnabled="false"
|
2018-08-10 22:40:43 +05:30
|
|
|
app:itemMargin="28dp" />
|
2018-07-27 18:37:33 +05:30
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
2018-09-23 15:34:43 +05:30
|
|
|
android:layout_margin="8dp"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:background="?attr/dividerColor" />
|
|
|
|
</LinearLayout>
|
2018-09-23 15:34:43 +05:30
|
|
|
|
2018-11-05 19:23:07 +05:30
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/suggestion_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:visibility="gone">
|
|
|
|
|
|
|
|
|
|
|
|
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
|
|
|
|
style="@style/SubTitleTextAppearance"
|
|
|
|
android:text="@string/suggestion_songs" />
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/suggestion_songs"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:nestedScrollingEnabled="false" />
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:layout_margin="8dp"
|
|
|
|
android:background="?attr/dividerColor" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
2018-09-23 15:34:43 +05:30
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/genre_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:visibility="gone">
|
|
|
|
|
2018-11-05 19:23:07 +05:30
|
|
|
<code.name.monkey.appthemehelper.common.views.ATESecondaryTextView
|
2018-09-23 15:34:43 +05:30
|
|
|
style="@style/SubTitleTextAppearance"
|
|
|
|
android:text="@string/genres" />
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/genres"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:nestedScrollingEnabled="false" />
|
|
|
|
</LinearLayout>
|
2018-07-27 18:37:33 +05:30
|
|
|
</LinearLayout>
|