mirror of
https://github.com/MaintainTeam/LastPipeBender.git
synced 2025-03-04 15:28:21 +03:00
49 lines
1.7 KiB
XML
49 lines
1.7 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<RelativeLayout
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:focusable="true"
|
||
|
android:focusableInTouchMode="true">
|
||
|
|
||
|
<android.support.v7.widget.RecyclerView
|
||
|
android:id="@+id/result_list_view"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:scrollbars="vertical"
|
||
|
app:layoutManager="LinearLayoutManager"
|
||
|
tools:listitem="@layout/channel_item"/>
|
||
|
|
||
|
<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-->
|
||
|
<include
|
||
|
android:id="@+id/error_panel"
|
||
|
layout="@layout/error_retry"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_centerHorizontal="true"
|
||
|
android:layout_marginTop="50dp"
|
||
|
android:visibility="gone"
|
||
|
tools:visibility="visible"/>
|
||
|
|
||
|
<include
|
||
|
android:id="@+id/empty_panel"
|
||
|
layout="@layout/empty_view_panel"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_centerInParent="true"
|
||
|
android:layout_marginTop="50dp"
|
||
|
android:visibility="gone"
|
||
|
tools:visibility="visible"/>
|
||
|
|
||
|
</RelativeLayout>
|