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

125 lines
4.5 KiB
XML
Raw Normal View History

2018-07-27 13:07:33 +00:00
<?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-09-23 10:04:43 +00:00
android:visibility="gone"
tools:visibility="visible">
2018-07-27 13:07:33 +00:00
2018-08-22 17:54:07 +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-08-30 09:29:30 +00:00
<androidx.recyclerview.widget.RecyclerView
2018-07-27 13:07:33 +00:00
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 10:04:43 +00:00
android:layout_margin="8dp"
2018-07-27 13:07:33 +00:00
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"
android:visibility="gone">
2018-08-22 17:54:07 +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
<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-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>
<LinearLayout
android:id="@+id/top_artist_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:visibility="gone">
2018-08-22 17:54:07 +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-07-27 13:07:33 +00:00
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 10:04:43 +00:00
android:layout_margin="8dp"
2018-07-27 13:07:33 +00:00
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-08-22 17:54:07 +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
android:id="@+id/top_album"
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
<LinearLayout
android:id="@+id/genre_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:visibility="gone">
<code.name.monkey.appthemehelper.common.views.ATEPrimaryTextView
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 13:07:33 +00:00
</LinearLayout>