2018-04-30 19:30:10 +10:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-07-20 04:10:20 +10:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-04-30 19:30:10 +10:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2019-07-20 04:10:20 +10:00
|
|
|
android:id="@+id/layoutRoot"
|
|
|
|
android:layout_width="@dimen/timeline_width"
|
2020-01-31 07:37:28 +11:00
|
|
|
android:layout_height="match_parent">
|
2018-04-30 19:30:10 +10:00
|
|
|
|
2019-07-20 04:10:20 +10:00
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
2019-11-07 06:17:53 +11:00
|
|
|
android:id="@+id/swipeRefreshLayout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
2018-04-30 19:30:10 +10:00
|
|
|
|
2018-12-18 01:25:35 +11:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2019-11-07 06:17:53 +11:00
|
|
|
android:id="@+id/searchRecyclerView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="center"
|
2020-01-31 07:37:28 +11:00
|
|
|
android:background="?android:attr/windowBackground"
|
2019-11-07 06:17:53 +11:00
|
|
|
tools:listitem="@layout/item_account" />
|
2019-07-20 04:10:20 +10:00
|
|
|
|
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
|
|
|
|
|
|
|
<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" />
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progressBarBottom"
|
|
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom"
|
|
|
|
android:indeterminate="true"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|