2018-04-30 19:30:10 +10:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-12-18 01:25:35 +11:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-04-30 19:30:10 +10:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
2018-05-17 03:14:53 +10:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="?attr/tab_page_margin_drawable">
|
2018-04-30 19:30:10 +10:00
|
|
|
|
2018-05-17 03:14:53 +10:00
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="@dimen/timeline_width"
|
2018-04-30 19:30:10 +10:00
|
|
|
android:layout_height="match_parent"
|
2018-05-17 03:14:53 +10:00
|
|
|
android:layout_gravity="center">
|
2018-04-30 19:30:10 +10:00
|
|
|
|
2018-12-18 01:25:35 +11:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2018-05-17 03:14:53 +10:00
|
|
|
android:id="@+id/searchRecyclerView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
tools:listitem="@layout/item_account"
|
|
|
|
android:background="?attr/window_background" />
|
2018-04-30 19:30:10 +10:00
|
|
|
|
2018-05-17 03:14:53 +10:00
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/searchProgressBar"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:indeterminate="true"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/searchNoResultsText"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:text="@string/search_no_results"
|
|
|
|
android:visibility="gone" />
|
|
|
|
</FrameLayout>
|
2018-04-30 19:30:10 +10:00
|
|
|
|
2018-12-18 01:25:35 +11:00
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|