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

23 lines
894 B
XML
Raw Normal View History

2016-08-02 01:42:05 +02:00
<?xml version="1.0" encoding="utf-8"?>
2017-06-27 22:35:52 +02:00
<FrameLayout 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"
2016-08-03 17:18:05 +02:00
android:layout_width="match_parent"
2017-04-26 21:24:33 +02:00
android:layout_height="match_parent"
android:focusable="true"
2017-06-27 22:35:52 +02:00
android:focusableInTouchMode="true">
2016-08-03 17:18:05 +02:00
<android.support.v7.widget.RecyclerView
2017-04-26 21:24:33 +02:00
android:id="@+id/result_list_view"
2016-08-03 17:18:05 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2017-04-26 21:24:33 +02:00
android:scrollbars="vertical"
2016-08-03 17:18:05 +02:00
app:layoutManager="LinearLayoutManager"
2017-06-27 22:35:52 +02:00
tools:listitem="@layout/stream_item" />
2016-08-03 17:18:05 +02:00
2017-04-26 21:24:33 +02:00
<include
2017-06-27 22:35:52 +02:00
layout="@layout/loading_error_retry"
android:layout_width="match_parent"
2017-04-26 21:24:33 +02:00
android:layout_height="wrap_content"
2017-06-27 22:35:52 +02:00
android:layout_gravity="center_vertical" />
</FrameLayout>