2016-07-26 13:50:52 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-10-09 20:24:02 +02:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-04-09 14:34:00 -03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-04-26 16:24:33 -03:00
|
|
|
android:layout_width="match_parent"
|
2017-07-02 22:22:37 +02:00
|
|
|
android:layout_height="match_parent">
|
2016-07-26 13:50:52 +02:00
|
|
|
|
2019-10-04 14:59:08 +02:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2017-09-03 03:04:18 -03:00
|
|
|
android:id="@+id/items_list"
|
2016-07-26 13:50:52 +02:00
|
|
|
android:layout_width="match_parent"
|
2017-02-27 15:58:09 +01:00
|
|
|
android:layout_height="match_parent"
|
2017-04-09 14:34:00 -03:00
|
|
|
android:scrollbars="vertical"
|
2020-10-09 20:24:02 +02:00
|
|
|
tools:listitem="@layout/list_stream_item" />
|
2016-07-26 13:50:52 +02:00
|
|
|
|
2017-07-02 22:22:37 +02: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 20:24:02 +02:00
|
|
|
tools:visibility="visible" />
|
2017-07-02 22:22:37 +02:00
|
|
|
|
2017-09-03 03:04:18 -03:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/empty_state_view"
|
2017-07-02 22:22:37 +02:00
|
|
|
android:layout_width="wrap_content"
|
2017-04-26 16:24:33 -03:00
|
|
|
android:layout_height="wrap_content"
|
2017-07-02 22:22:37 +02:00
|
|
|
android:layout_centerInParent="true"
|
2017-09-03 03:04:18 -03:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingTop="90dp"
|
2017-07-02 22:22:37 +02:00
|
|
|
android:visibility="gone"
|
2017-09-03 03:04:18 -03:00
|
|
|
tools:visibility="visible">
|
2017-07-02 22:22:37 +02:00
|
|
|
|
2017-09-03 03:04:18 -03:00
|
|
|
<TextView
|
2020-04-07 15:39:06 +02:00
|
|
|
android:id="@+id/channel_kaomoji"
|
2017-09-03 03:04:18 -03:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_marginBottom="10dp"
|
|
|
|
android:fontFamily="monospace"
|
|
|
|
android:text="(╯°-°)╯"
|
|
|
|
android:textSize="35sp"
|
2020-10-09 20:24:02 +02:00
|
|
|
tools:ignore="HardcodedText,UnusedAttribute" />
|
2017-09-03 03:04:18 -03:00
|
|
|
|
|
|
|
<TextView
|
2020-04-07 15:39:06 +02:00
|
|
|
android:id="@+id/channel_no_videos"
|
2017-09-03 03:04:18 -03:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:text="@string/empty_view_no_videos"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:textSize="24sp" />
|
2017-09-03 03:04:18 -03:00
|
|
|
|
2020-04-07 15:39:06 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/error_content_not_supported"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:layout_marginTop="20dp"
|
2020-04-07 15:39:06 +02:00
|
|
|
android:text="@string/content_not_supported"
|
|
|
|
android:textSize="15sp"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
2017-09-03 03:04:18 -03:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<!--ERROR PANEL-->
|
2017-08-07 06:02:30 -07:00
|
|
|
<include
|
2017-09-03 03:04:18 -03:00
|
|
|
android:id="@+id/error_panel"
|
2020-12-11 14:55:47 +01:00
|
|
|
layout="@layout/error_panel"
|
2017-08-07 06:02:30 -07: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 20:24:02 +02:00
|
|
|
tools:visibility="visible" />
|
2017-08-07 06:02:30 -07:00
|
|
|
|
2017-10-25 15:20:57 +02:00
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="4dp"
|
2020-10-09 20:24:02 +02:00
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:background="?attr/toolbar_shadow" />
|
2017-10-25 15:20:57 +02:00
|
|
|
|
2017-07-02 22:22:37 +02:00
|
|
|
</RelativeLayout>
|