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

16 lines
716 B
XML
Raw Normal View History

2021-04-30 17:20:15 +00:00
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
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"
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-04-30 17:20:15 +00:00
</androidx.constraintlayout.widget.ConstraintLayout>