AquaStream/app/src/main/res/layout/homepage_parent_tv.xml

31 lines
1.3 KiB
XML
Raw Normal View History

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:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
2022-03-29 21:07:41 +00:00
<TextView
2023-01-21 19:05:37 +00:00
android:id="@+id/home_child_more_info"
style="@style/WatchHeaderText"
2022-12-28 11:51:55 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/navbar_width"
2022-12-28 11:51:55 +00:00
android:layout_marginEnd="0dp"
android:padding="12dp"
2022-12-28 11:51:55 +00:00
tools:text="Trending" />
2022-03-29 21:07:41 +00:00
<androidx.recyclerview.widget.RecyclerView
2022-12-28 11:51:55 +00:00
android:id="@+id/home_child_recyclerview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clipToPadding="false"
android:descendantFocusability="afterDescendants"
android:nextFocusUp="@id/home_child_more_info"
android:orientation="horizontal"
android:paddingStart="@dimen/navbar_width"
android:paddingEnd="5dp"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
2022-12-28 11:51:55 +00:00
tools:listitem="@layout/home_result_grid" />
2022-03-29 21:07:41 +00:00
</LinearLayout>