mirror of
https://github.com/recloudstream/cloudstream.git
synced 2024-08-15 01:53:11 +00:00
33 lines
1.3 KiB
XML
33 lines
1.3 KiB
XML
|
<?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:orientation="vertical"
|
||
|
android:background="@color/colorPrimary"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/home_parent_item_title"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:padding="12sp"
|
||
|
android:textSize="18sp"
|
||
|
tools:text="Trending"
|
||
|
/>
|
||
|
<RelativeLayout
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="230dp"
|
||
|
android:layout_marginBottom="20dp"
|
||
|
>
|
||
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
|
||
|
android:id="@+id/home_child_recyclerview"
|
||
|
android:orientation="horizontal"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
tools:listitem="@layout/home_result_grid"
|
||
|
/>
|
||
|
</RelativeLayout>
|
||
|
</LinearLayout>
|