NewPipe/app/src/main/res/layout/fragment_channel.xml

25 lines
899 B
XML
Raw Normal View History

2016-07-26 11:50:52 +00:00
<?xml version="1.0" encoding="utf-8"?>
2017-02-27 14:58:09 +00:00
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
2016-07-26 11:50:52 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools"
2017-02-27 14:58:09 +00:00
android:orientation="vertical"
android:title="@string/channel">
2016-07-26 11:50:52 +00:00
2017-02-27 14:58:09 +00:00
<android.support.v7.widget.RecyclerView
android:id="@+id/channel_streams_view"
2016-07-26 11:50:52 +00:00
android:layout_width="match_parent"
2017-02-27 14:58:09 +00:00
android:layout_height="match_parent"
android:background="?android:windowBackground"
android:scrollbars="vertical"
tools:listitem="@layout/stream_item"/>
2016-07-26 11:50:52 +00: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"/>
2017-02-27 14:58:09 +00:00
</RelativeLayout>