1
0
mirror of https://github.com/TeamNewPipe/NewPipe synced 2024-07-07 20:34:24 +00:00
NewPipe/app/src/main/res/layout/fragment_search.xml

92 lines
3.2 KiB
XML
Raw Normal View History

2016-08-01 23:42:05 +00:00
<?xml version="1.0" encoding="utf-8"?>
<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-07-10 03:25:10 +00:00
android:layout_height="match_parent">
2019-10-04 12:59:08 +00:00
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/items_list"
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"
tools:listitem="@layout/list_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"/>
<LinearLayout
android:id="@+id/empty_state_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:orientation="vertical"
android:visibility="gone"
tools:visibility="visible">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="10dp"
android:fontFamily="monospace"
android:text="╰(°●°╰)"
android:textSize="35sp"
tools:ignore="HardcodedText,UnusedAttribute"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="@string/search_no_results"
android:textSize="24sp"/>
</LinearLayout>
2017-07-02 20:22:37 +00:00
<LinearLayout
android:id="@+id/suggestions_panel"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="?android:attr/windowBackground"
android:focusable="true"
android:focusableInTouchMode="true"
android:visibility="gone"
tools:background="@android:color/transparent"
tools:visibility="visible">
2019-10-04 12:59:08 +00:00
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/suggestions_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical"
app:layoutManager="LinearLayoutManager"
tools:listitem="@layout/item_search_suggestion"/>
</LinearLayout>
2017-07-02 20:22:37 +00:00
<!--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"/>
2017-07-02 20:22:37 +00:00
2017-10-25 13:20:57 +00:00
<View
android:layout_width="match_parent"
android:layout_height="4dp"
android:background="?attr/toolbar_shadow_drawable"
android:layout_alignParentTop="true"/>
2017-07-02 20:22:37 +00:00
</RelativeLayout>