2017-08-07 13:02:30 +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-08-07 13:02:30 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
2017-09-03 06:04:18 +00:00
|
|
|
android:layout_height="match_parent">
|
2017-08-07 13:02:30 +00:00
|
|
|
|
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"
|
2017-08-07 13:02:30 +00:00
|
|
|
android:layout_width="match_parent"
|
2019-04-28 20:43:54 +00:00
|
|
|
android:layout_height="match_parent"
|
2017-08-07 13:02:30 +00:00
|
|
|
android:scrollbars="vertical"
|
2018-03-08 14:50:46 +00:00
|
|
|
android:visibility="gone"
|
2020-10-09 18:24:02 +00:00
|
|
|
tools:listitem="@layout/list_channel_item" />
|
2017-08-07 13:02:30 +00:00
|
|
|
|
|
|
|
<!--ERROR PANEL-->
|
|
|
|
<include
|
|
|
|
android:id="@+id/error_panel"
|
|
|
|
layout="@layout/error_retry"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-03-08 14:50:46 +00:00
|
|
|
android:layout_below="@id/items_list"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:layout_centerHorizontal="true"
|
2017-08-07 13:02:30 +00:00
|
|
|
android:layout_marginTop="50dp"
|
|
|
|
android:visibility="gone"
|
2020-10-09 18:24:02 +00:00
|
|
|
tools:visibility="visible" />
|
2017-08-07 13:02:30 +00:00
|
|
|
|
|
|
|
<include
|
2017-09-03 06:04:18 +00:00
|
|
|
android:id="@+id/empty_state_view"
|
2018-01-17 05:12:03 +00:00
|
|
|
layout="@layout/list_empty_view"
|
2017-08-07 13:02:30 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-03-08 14:50:46 +00:00
|
|
|
android:layout_below="@id/items_list"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:layout_centerInParent="true"
|
2017-08-07 13:02:30 +00:00
|
|
|
android:layout_marginTop="50dp"
|
|
|
|
android:visibility="gone"
|
2020-10-09 18:24:02 +00:00
|
|
|
tools:visibility="visible" />
|
2017-08-07 13:02:30 +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
|
|
|
|
2020-10-09 18:24:02 +00:00
|
|
|
</RelativeLayout>
|