2021-12-09 18:25:32 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-11-17 22:46:12 +05:30
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-12-09 18:25:32 +05:30
|
|
|
android:layout_width="match_parent"
|
2022-11-17 22:46:12 +05:30
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2022-06-06 19:36:53 +05:30
|
|
|
|
2022-11-17 22:46:12 +05:30
|
|
|
<TextView
|
|
|
|
android:id="@+id/featuredTV"
|
|
|
|
style="@style/HomeCategoryTitle"
|
|
|
|
android:text="@string/featured" />
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/featuredRV"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="210dp"
|
|
|
|
android:layout_marginHorizontal="10dp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/trendingTV"
|
|
|
|
style="@style/HomeCategoryTitle"
|
|
|
|
android:text="@string/trending" />
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/trendingRV"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="210dp"
|
|
|
|
android:layout_marginHorizontal="10dp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/playlistsTV"
|
|
|
|
style="@style/HomeCategoryTitle"
|
|
|
|
android:text="@string/playlists" />
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/playlistsRV"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="210dp"
|
|
|
|
android:layout_marginHorizontal="10dp" />
|
|
|
|
|
|
|
|
</LinearLayout>
|