2016-08-02 01:42:05 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2016-08-03 17:18:05 +02:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-08-02 01:42:05 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_height="match_parent"
|
2016-08-03 17:18:05 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:name="org.schabi.newpipe.SearchInfoItemFragment"
|
2017-04-09 14:34:00 -03:00
|
|
|
tools:context=".fragments.search.SearchFragment">
|
2016-08-03 17:18:05 +02:00
|
|
|
|
2017-01-11 11:06:24 +01:00
|
|
|
<include layout="@layout/main_bg" />
|
|
|
|
|
2016-08-03 17:18:05 +02:00
|
|
|
<android.support.v7.widget.RecyclerView
|
|
|
|
android:id="@+id/list"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:layoutManager="LinearLayoutManager"
|
2017-02-12 16:45:01 +01:00
|
|
|
tools:listitem="@layout/stream_item"
|
2016-08-03 17:18:05 +02:00
|
|
|
android:scrollbars="vertical"/>
|
|
|
|
|
2017-04-09 14:34:00 -03:00
|
|
|
<ProgressBar android:id="@+id/loading_progress_bar"
|
2016-08-03 17:18:05 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
android:indeterminate="true"
|
2017-04-09 14:34:00 -03:00
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible"/>
|
2016-08-03 17:18:05 +02:00
|
|
|
</RelativeLayout>
|