2022-03-29 21:07:41 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-12-28 11:51:55 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
2022-03-29 21:07:41 +00:00
|
|
|
|
|
|
|
<TextView
|
2022-12-28 11:51:55 +00:00
|
|
|
android:layout_marginStart="@dimen/navbar_width"
|
|
|
|
android:id="@+id/home_parent_item_title"
|
|
|
|
android:padding="12dp"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
style="@style/WatchHeaderText"
|
|
|
|
android:layout_marginEnd="0dp"
|
|
|
|
tools:text="Trending" />
|
2022-03-29 21:07:41 +00:00
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2022-12-28 11:51:55 +00:00
|
|
|
android:nextFocusUp="@id/home_child_more_info"
|
2022-03-29 21:07:41 +00:00
|
|
|
|
2022-12-28 11:51:55 +00:00
|
|
|
android:paddingEnd="5dp"
|
|
|
|
android:paddingStart="@dimen/navbar_width"
|
|
|
|
android:clipToPadding="false"
|
2022-03-29 21:07:41 +00:00
|
|
|
|
2022-12-28 11:51:55 +00:00
|
|
|
android:descendantFocusability="afterDescendants"
|
|
|
|
|
|
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
|
|
|
|
android:id="@+id/home_child_recyclerview"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
tools:listitem="@layout/home_result_grid" />
|
2022-03-29 21:07:41 +00:00
|
|
|
</LinearLayout>
|