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

121 lines
4.4 KiB
XML
Raw Normal View History

2016-08-02 01:42:05 +02:00
<?xml version="1.0" encoding="utf-8"?>
2020-10-09 20:24:02 +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"
2016-08-03 17:18:05 +02:00
android:layout_width="match_parent"
2017-07-10 05:25:10 +02:00
android:layout_height="match_parent">
2020-07-05 00:39:36 +02:00
<TextView
android:id="@+id/correct_suggestion"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignTop="@id/error_panel"
2020-07-05 00:39:36 +02:00
android:background="?attr/selectableItemBackground"
android:padding="12dp"
2020-07-05 00:39:36 +02:00
android:textSize="@dimen/search_suggestion_text_size"
tools:text="Showing results for lorem ipsum dolor sit amet consectetur adipisci elit" />
<TextView
android:id="@+id/search_meta_info_text_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/correct_suggestion"
android:gravity="center"
android:padding="12dp"
android:textSize="@dimen/video_item_detail_description_text_size"
tools:text="Get the latest information from the WHO about coronavirus." />
<View
android:id="@+id/search_meta_info_separator"
android:layout_width="match_parent"
android:layout_height="1px"
android:layout_below="@id/search_meta_info_text_view"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:background="?attr/separator_color" />
2019-10-04 14:59:08 +02:00
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/items_list"
2016-08-03 17:18:05 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/search_meta_info_separator"
2017-04-26 21:24:33 +02:00
android:scrollbars="vertical"
2016-08-03 17:18:05 +02:00
app:layoutManager="LinearLayoutManager"
tools:listitem="@layout/list_stream_item" />
2016-08-03 17:18:05 +02:00
2017-07-02 22:22:37 +02: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"
2020-10-09 20:24:02 +02:00
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"
2020-10-09 20:24:02 +02:00
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"
2020-10-09 20:24:02 +02:00
android:textSize="24sp" />
</LinearLayout>
2017-07-02 22:22:37 +02: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:orientation="vertical"
android:visibility="gone"
tools:background="@android:color/transparent"
tools:visibility="visible">
2019-10-04 14:59:08 +02: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 22:22:37 +02:00
<!--ERROR PANEL-->
2017-04-26 21:24:33 +02:00
<include
2017-07-02 22:22:37 +02:00
android:id="@+id/error_panel"
layout="@layout/error_panel"
2017-07-02 22:22:37 +02:00
android:layout_width="wrap_content"
2017-04-26 21:24:33 +02:00
android:layout_height="wrap_content"
android:layout_centerInParent="true"
2017-07-02 22:22:37 +02:00
android:visibility="gone"
2020-10-09 20:24:02 +02:00
tools:visibility="visible" />
2017-07-02 22:22:37 +02:00
2017-10-25 15:20:57 +02:00
<View
android:layout_width="match_parent"
android:layout_height="4dp"
2020-10-09 20:24:02 +02:00
android:layout_alignParentTop="true"
android:background="?attr/toolbar_shadow" />
2017-10-25 15:20:57 +02:00
2017-07-02 22:22:37 +02:00
</RelativeLayout>