2017-01-17 14:13:29 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-02-21 18:43:50 -05:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-01-17 14:13:29 -05:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="8dp">
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progress_bar"
|
|
|
|
style="@style/Widget.AppCompat.ProgressBar"
|
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="24dp"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:layout_gravity="center" />
|
2017-01-17 14:13:29 -05:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/progress_message"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:text="@string/no_more_results"
|
2017-01-17 14:13:29 -05:00
|
|
|
android:visibility="gone"
|
2020-02-21 18:43:50 -05:00
|
|
|
tools:visibility="visible" />
|
2017-01-17 14:13:29 -05:00
|
|
|
|
2020-02-21 18:43:50 -05:00
|
|
|
</FrameLayout>
|