RetroMusicPlayer/app/src/main/res/layout/home_section_content.xml

153 lines
5.3 KiB
XML
Raw Normal View History

2018-07-27 18:37:33 +05:30
<?xml version="1.0" encoding="utf-8"?>
2018-11-28 11:07:10 +05:30
2018-07-27 18:37:33 +05:30
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
2018-12-04 21:04:26 +05:30
android:id="@+id/recentArtistContainer"
2018-07-27 18:37:33 +05:30
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-11-28 11:07:10 +05:30
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
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-12-04 21:04:26 +05:30
android:id="@+id/recentArtist"
2018-07-27 18:37:33 +05:30
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
2018-12-04 21:04:26 +05:30
android:id="@+id/recentAlbumsContainer"
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
2018-11-28 11:07:10 +05:30
android:visibility="gone">
2018-07-27 18:37:33 +05:30
2018-11-05 19:23:07 +05:30
2018-11-28 11:07:10 +05:30
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
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
2018-12-04 21:04:26 +05:30
android:id="@+id/recentAlbum"
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:nestedScrollingEnabled="false"
2018-11-28 11:52:40 +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>
<LinearLayout
2018-12-04 21:04:26 +05:30
android:id="@+id/topArtistContainer"
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:visibility="gone">
2018-11-28 11:07:10 +05:30
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
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-12-04 21:04:26 +05:30
android:id="@+id/topArtist"
2018-07-27 18:37:33 +05:30
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
2018-12-04 21:04:26 +05:30
android:id="@+id/topAlbumsContainer"
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:visibility="gone">
2018-11-05 19:23:07 +05:30
2018-11-28 11:07:10 +05:30
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
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
2018-12-04 21:04:26 +05:30
android:id="@+id/topAlbum"
2018-07-27 18:37:33 +05:30
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
2018-12-04 21:04:26 +05:30
android:id="@+id/suggestionContainer"
2018-11-05 19:23:07 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:visibility="gone">
2018-11-28 11:07:10 +05:30
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
2018-11-05 19:23:07 +05:30
style="@style/SubTitleTextAppearance"
android:text="@string/suggestion_songs" />
<androidx.recyclerview.widget.RecyclerView
2018-12-04 21:04:26 +05:30
android:id="@+id/suggestionSongs"
2018-11-05 19:23:07 +05:30
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
2018-12-04 21:04:26 +05:30
android:id="@+id/genreContainer"
2018-09-23 15:34:43 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:visibility="gone">
2018-11-28 11:07:10 +05:30
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
2018-09-23 15:34:43 +05:30
style="@style/SubTitleTextAppearance"
android:text="@string/genres" />
<androidx.recyclerview.widget.RecyclerView
2018-12-04 21:04:26 +05:30
android:id="@+id/genresRecyclerView"
2018-09-23 15:34:43 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:nestedScrollingEnabled="false" />
</LinearLayout>
2018-07-27 18:37:33 +05:30
</LinearLayout>