2017-08-07 15:02:30 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
2017-09-03 08:04:18 +02:00
|
|
|
android:layout_height="match_parent">
|
2017-08-07 15:02:30 +02:00
|
|
|
|
2019-10-04 14:59:08 +02:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2017-09-03 08:04:18 +02:00
|
|
|
android:id="@+id/items_list"
|
2017-08-07 15:02:30 +02:00
|
|
|
android:layout_width="match_parent"
|
2019-04-28 22:43:54 +02:00
|
|
|
android:layout_height="match_parent"
|
2017-08-07 15:02:30 +02:00
|
|
|
android:scrollbars="vertical"
|
2018-03-08 15:50:46 +01:00
|
|
|
android:visibility="gone"
|
2019-04-28 22:43:54 +02:00
|
|
|
tools:listitem="@layout/list_channel_item"/>
|
2017-08-07 15:02:30 +02:00
|
|
|
|
|
|
|
<!--ERROR PANEL-->
|
|
|
|
<include
|
|
|
|
android:id="@+id/error_panel"
|
|
|
|
layout="@layout/error_retry"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerHorizontal="true"
|
2018-03-08 15:50:46 +01:00
|
|
|
android:layout_below="@id/items_list"
|
2017-08-07 15:02:30 +02:00
|
|
|
android:layout_marginTop="50dp"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible"/>
|
|
|
|
|
|
|
|
<include
|
2017-09-03 08:04:18 +02:00
|
|
|
android:id="@+id/empty_state_view"
|
2018-01-17 06:12:03 +01:00
|
|
|
layout="@layout/list_empty_view"
|
2017-08-07 15:02:30 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerInParent="true"
|
2018-03-08 15:50:46 +01:00
|
|
|
android:layout_below="@id/items_list"
|
2017-08-07 15:02:30 +02:00
|
|
|
android:layout_marginTop="50dp"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible"/>
|
|
|
|
|
2017-10-25 15:20:57 +02:00
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="4dp"
|
|
|
|
android:background="?attr/toolbar_shadow_drawable"
|
|
|
|
android:layout_alignParentTop="true"/>
|
|
|
|
|
2017-08-07 15:02:30 +02:00
|
|
|
</RelativeLayout>
|