2016-07-26 13:50:52 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-02-27 15:58:09 +01:00
|
|
|
<RelativeLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-07-26 13:50:52 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2017-02-27 15:58:09 +01:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:title="Channel">
|
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"
|
|
|
|
android:scrollbars="vertical"/>
|
2016-07-26 13:50:52 +02:00
|
|
|
|
2016-08-01 01:56:19 +02:00
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:id="@+id/channel_loading">
|
|
|
|
<ProgressBar android:id="@+id/progressBar"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
android:indeterminate="true"/>
|
|
|
|
</RelativeLayout>
|
2017-02-27 15:58:09 +01:00
|
|
|
</RelativeLayout>
|