peertube-live-streaming/app/src/main/res/layout/home.xml

24 lines
921 B
XML

<?xml version="1.0" encoding="utf-8"?>
<layout 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">
<data/>
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".fragment.home.HomeFragment">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/instance_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
<TextView
android:id="@+id/no_instance"
android:text="@string/no_instance"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</layout>