2017-01-19 05:35:07 +11:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-07-01 08:30:25 +10:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-12-02 07:52:10 +11:00
|
|
|
android:id="@+id/footer_container"
|
2017-01-19 05:35:07 +11:00
|
|
|
android:layout_width="match_parent"
|
2017-12-02 07:52:10 +11:00
|
|
|
android:layout_height="match_parent">
|
2017-01-19 05:35:07 +11:00
|
|
|
|
2017-07-01 08:30:25 +10:00
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/footer_progress_bar"
|
2017-01-19 05:35:07 +11:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2017-07-01 08:30:25 +10:00
|
|
|
android:layout_centerInParent="true"
|
|
|
|
android:indeterminate="true" />
|
2017-01-19 05:35:07 +11:00
|
|
|
|
2017-07-01 08:30:25 +10:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/footer_end_message"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2017-12-02 07:52:10 +11:00
|
|
|
android:layout_centerInParent="true"
|
2018-08-16 04:51:35 +10:00
|
|
|
android:drawablePadding="32dp"
|
2017-07-01 08:30:25 +10:00
|
|
|
android:text="@string/footer_empty"
|
|
|
|
android:textAlignment="center"
|
2017-12-02 07:52:10 +11:00
|
|
|
android:textSize="?attr/status_text_medium" />
|
2017-07-01 08:30:25 +10:00
|
|
|
|
|
|
|
</RelativeLayout>
|