2017-09-03 06:04:18 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-10-09 18:24:02 +00:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-09-03 06:04:18 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2019-10-04 12:59:08 +00:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2017-09-03 06:04:18 +00:00
|
|
|
android:id="@+id/items_list"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:scrollbars="vertical"
|
2020-10-09 18:24:02 +00:00
|
|
|
tools:listitem="@layout/list_stream_mini_item" />
|
2017-09-03 06:04:18 +00:00
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/loading_progress_bar"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
android:indeterminate="true"
|
|
|
|
android:visibility="gone"
|
2020-10-09 18:24:02 +00:00
|
|
|
tools:visibility="visible" />
|
2017-09-03 06:04:18 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/empty_state_view"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingTop="90dp"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:layout_marginBottom="10dp"
|
2017-09-03 06:04:18 +00:00
|
|
|
android:fontFamily="monospace"
|
|
|
|
android:text="(ಠ_ಠ)"
|
|
|
|
android:textSize="35sp"
|
2020-10-09 18:24:02 +00:00
|
|
|
tools:ignore="HardcodedText,UnusedAttribute" />
|
2017-09-03 06:04:18 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:text="@string/empty_view_no_videos"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:textSize="24sp" />
|
2017-09-03 06:04:18 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<!--ERROR PANEL-->
|
|
|
|
<include
|
|
|
|
android:id="@+id/error_panel"
|
2020-12-11 13:55:47 +00:00
|
|
|
layout="@layout/error_panel"
|
2017-09-03 06:04:18 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
android:layout_marginTop="50dp"
|
|
|
|
android:visibility="gone"
|
2020-10-09 18:24:02 +00:00
|
|
|
tools:visibility="visible" />
|
2017-09-03 06:04:18 +00:00
|
|
|
|
2017-10-25 13:20:57 +00:00
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="4dp"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:background="?attr/toolbar_shadow" />
|
2017-10-25 13:20:57 +00:00
|
|
|
|
2017-09-03 06:04:18 +00:00
|
|
|
</RelativeLayout>
|