cloudstream/app/src/main/res/layout/fragment_home.xml

19 lines
718 B
XML
Raw Normal View History

2021-04-30 17:20:15 +00:00
<?xml version="1.0" encoding="utf-8"?>
2021-07-29 00:54:27 +00:00
<LinearLayout
2021-04-30 17:20:15 +00:00
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="match_parent"
2021-07-29 00:54:27 +00:00
android:id="@+id/home_root"
android:orientation="vertical"
2021-04-30 17:20:15 +00:00
tools:context=".ui.home.HomeFragment">
2021-07-29 00:19:42 +00:00
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/home_master_recycler"
2021-04-30 17:20:15 +00:00
android:layout_width="match_parent"
2021-07-29 00:19:42 +00:00
android:layout_height="match_parent"
tools:listitem="@layout/homepage_parent"
/>
2021-07-29 00:54:27 +00:00
</LinearLayout>