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"
|
2021-05-22 12:02:49 -04:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-02-21 18:43:50 -05:00
|
|
|
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">
|
|
|
|
|
2020-12-26 11:24:10 -05:00
|
|
|
<com.google.android.material.progressindicator.CircularProgressIndicator
|
2017-01-17 14:13:29 -05:00
|
|
|
android:id="@+id/progress_bar"
|
2020-12-26 11:24:10 -05:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:indeterminate="true"
|
|
|
|
app:indicatorSize="24dp"
|
|
|
|
app:trackThickness="3dp" />
|
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>
|