2016-07-26 13:50:52 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-06-15 16:26:48 +02:00
|
|
|
<FrameLayout
|
2017-02-27 15:58:09 +01:00
|
|
|
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-06-15 16:26:48 +02:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
tools:context=".fragments.channel.ChannelFragment">
|
2016-07-26 13:50:52 +02:00
|
|
|
|
2017-02-27 15:58:09 +01:00
|
|
|
<android.support.v7.widget.RecyclerView
|
|
|
|
android:id="@+id/channel_streams_view"
|
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"
|
|
|
|
android:background="?android:windowBackground"
|
2017-04-09 14:34:00 -03:00
|
|
|
android:scrollbars="vertical"
|
|
|
|
tools:listitem="@layout/stream_item"/>
|
2016-07-26 13:50:52 +02:00
|
|
|
|
2017-04-09 14:34:00 -03:00
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/loading_progress_bar"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2017-06-15 16:26:48 +02:00
|
|
|
android:layout_gravity="center"
|
2017-04-26 16:24:33 -03:00
|
|
|
android:indeterminate="true"
|
|
|
|
android:visibility="gone"
|
2017-06-15 16:26:48 +02:00
|
|
|
tools:visibility="visible" />
|
2017-04-26 16:24:33 -03:00
|
|
|
|
|
|
|
<!--ERROR PANEL-->
|
|
|
|
<include
|
|
|
|
android:id="@+id/error_panel"
|
|
|
|
layout="@layout/error_retry"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2017-06-15 16:26:48 +02:00
|
|
|
android:layout_gravity="center"
|
2017-04-26 16:24:33 -03:00
|
|
|
android:layout_marginTop="50dp"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible"/>
|
|
|
|
|
2017-06-15 16:26:48 +02:00
|
|
|
</FrameLayout>
|