2016-08-01 23:42:05 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-07-02 20:22:37 +00:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-08-01 23:42:05 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2016-08-03 15:18:05 +00:00
|
|
|
android:layout_width="match_parent"
|
2017-04-26 19:24:33 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:focusable="true"
|
2017-06-27 20:35:52 +00:00
|
|
|
android:focusableInTouchMode="true">
|
2017-01-11 10:06:24 +00:00
|
|
|
|
2016-08-03 15:18:05 +00:00
|
|
|
<android.support.v7.widget.RecyclerView
|
2017-04-26 19:24:33 +00:00
|
|
|
android:id="@+id/result_list_view"
|
2016-08-03 15:18:05 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2017-04-26 19:24:33 +00:00
|
|
|
android:scrollbars="vertical"
|
2016-08-03 15:18:05 +00:00
|
|
|
app:layoutManager="LinearLayoutManager"
|
2017-06-27 20:35:52 +00:00
|
|
|
tools:listitem="@layout/stream_item" />
|
2016-08-03 15:18:05 +00:00
|
|
|
|
2017-07-02 20:22:37 +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"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
|
|
|
<!--ERROR PANEL-->
|
2017-04-26 19:24:33 +00:00
|
|
|
<include
|
2017-07-02 20:22:37 +00:00
|
|
|
android:id="@+id/error_panel"
|
|
|
|
layout="@layout/error_retry"
|
|
|
|
android:layout_width="wrap_content"
|
2017-04-26 19:24:33 +00:00
|
|
|
android:layout_height="wrap_content"
|
2017-07-02 20:22:37 +00:00
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_marginTop="50dp"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|