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

160 lines
5.5 KiB
XML
Raw Normal View History

2018-07-27 13:07:33 +00:00
<?xml version="1.0" encoding="utf-8"?>
2018-11-28 05:37:10 +00:00
2018-07-27 13:07:33 +00:00
<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"
xmlns:tools="http://schemas.android.com/tools"
2018-07-27 13:07:33 +00:00
android:orientation="vertical">
<LinearLayout
2018-12-04 15:34:26 +00:00
android:id="@+id/recentArtistContainer"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
tools:visibility="visible"
2018-11-05 13:53:07 +00:00
android:visibility="gone">
2018-11-28 05:37:10 +00:00
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
2018-09-23 10:04:43 +00:00
style="@style/SubTitleTextAppearance"
android:text="@string/recent_artists" />
2018-07-27 13:07:33 +00:00
2018-11-05 13:53:07 +00:00
2018-08-30 09:29:30 +00:00
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
2018-07-27 13:07:33 +00:00
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 10:04:43 +00:00
android:layout_margin="8dp"
2018-07-27 13:07:33 +00:00
android:background="?attr/dividerColor" />
</LinearLayout>
<LinearLayout
2018-12-04 15:34:26 +00:00
android:id="@+id/recentAlbumsContainer"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
2018-11-28 05:37:10 +00:00
android:visibility="gone">
2018-07-27 13:07:33 +00:00
2018-11-05 13:53:07 +00:00
2018-11-28 05:37:10 +00:00
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
2018-09-23 10:04:43 +00:00
style="@style/SubTitleTextAppearance"
android:text="@string/recent_albums" />
2018-07-27 13:07:33 +00:00
2018-11-05 13:53:07 +00:00
2018-07-27 13:07:33 +00:00
<code.name.monkey.retromusic.views.MetalRecyclerViewPager
2018-12-04 15:34:26 +00:00
android:id="@+id/recentAlbum"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:nestedScrollingEnabled="false"
2018-11-28 06:22:40 +00:00
app:itemMargin="28dp" />
2018-07-27 13:07:33 +00:00
<View
android:layout_width="match_parent"
android:layout_height="1dp"
2018-09-23 10:04:43 +00:00
android:layout_margin="8dp"
2018-07-27 13:07:33 +00:00
android:background="?attr/dividerColor" />
</LinearLayout>
<LinearLayout
2018-12-04 15:34:26 +00:00
android:id="@+id/topArtistContainer"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:visibility="gone">
2018-11-28 05:37:10 +00:00
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
2018-09-23 10:04:43 +00:00
style="@style/SubTitleTextAppearance"
android:text="@string/top_artists" />
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
<androidx.recyclerview.widget.RecyclerView
2018-12-04 15:34:26 +00:00
android:id="@+id/topArtist"
2018-07-27 13:07:33 +00:00
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 10:04:43 +00:00
android:layout_margin="8dp"
2018-07-27 13:07:33 +00:00
android:background="?attr/dividerColor" />
</LinearLayout>
<LinearLayout
2018-12-04 15:34:26 +00:00
android:id="@+id/topAlbumsContainer"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:visibility="gone">
2018-11-05 13:53:07 +00:00
2018-11-28 05:37:10 +00:00
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
2018-09-23 10:04:43 +00:00
style="@style/SubTitleTextAppearance"
android:text="@string/top_albums" />
2018-07-27 13:07:33 +00:00
<code.name.monkey.retromusic.views.MetalRecyclerViewPager
2018-12-04 15:34:26 +00:00
android:id="@+id/topAlbum"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:nestedScrollingEnabled="false"
2018-08-10 17:10:43 +00:00
app:itemMargin="28dp" />
2018-07-27 13:07:33 +00:00
<View
android:layout_width="match_parent"
android:layout_height="1dp"
2018-09-23 10:04:43 +00:00
android:layout_margin="8dp"
2018-07-27 13:07:33 +00:00
android:background="?attr/dividerColor" />
</LinearLayout>
2018-09-23 10:04:43 +00:00
2018-11-05 13:53:07 +00:00
<LinearLayout
2018-12-04 15:34:26 +00:00
android:id="@+id/suggestionContainer"
2018-11-05 13:53:07 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:visibility="gone">
2018-11-28 05:37:10 +00:00
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
2018-11-05 13:53:07 +00:00
style="@style/SubTitleTextAppearance"
android:text="@string/suggestion_songs" />
<androidx.recyclerview.widget.RecyclerView
2018-12-04 15:34:26 +00:00
android:id="@+id/suggestionSongs"
2018-11-05 13:53:07 +00:00
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 10:04:43 +00:00
<LinearLayout
2018-12-04 15:34:26 +00:00
android:id="@+id/genreContainer"
2018-09-23 10:04:43 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:visibility="gone">
2018-11-28 05:37:10 +00:00
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
2018-09-23 10:04:43 +00:00
style="@style/SubTitleTextAppearance"
android:text="@string/genres" />
<androidx.recyclerview.widget.RecyclerView
2018-12-04 15:34:26 +00:00
android:id="@+id/genresRecyclerView"
2018-09-23 10:04:43 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:nestedScrollingEnabled="false" />
</LinearLayout>
2018-12-08 03:34:15 +00:00
<Space
android:layout_width="match_parent"
android:layout_height="56dp"
android:layout_marginBottom="16dp" />
2018-07-27 13:07:33 +00:00
</LinearLayout>