2018-05-17 03:14:53 +10:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-06-08 06:05:01 +10:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-05-17 03:14:53 +10:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="?attr/tab_page_margin_drawable">
|
|
|
|
|
2018-12-18 01:25:35 +11:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
2018-05-17 03:14:53 +10:00
|
|
|
android:layout_width="640dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:background="?attr/window_background">
|
|
|
|
|
2018-12-18 01:25:35 +11:00
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
2018-06-08 06:05:01 +10:00
|
|
|
android:id="@+id/swipe_refresh_layout"
|
2018-05-17 03:14:53 +10:00
|
|
|
android:layout_width="match_parent"
|
2018-06-08 06:05:01 +10:00
|
|
|
android:layout_height="match_parent">
|
2018-05-17 03:14:53 +10:00
|
|
|
|
2018-12-18 01:25:35 +11:00
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2018-06-08 06:05:01 +10:00
|
|
|
android:id="@+id/recycler_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
2018-12-18 01:25:35 +11:00
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
2018-06-08 06:05:01 +10:00
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progress_bar"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/nothing_message"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-08-16 04:51:35 +10:00
|
|
|
android:drawablePadding="32dp"
|
2018-06-08 06:05:01 +10:00
|
|
|
android:text="@string/footer_empty"
|
|
|
|
android:textAlignment="center"
|
|
|
|
android:textSize="?attr/status_text_medium"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
2018-12-18 01:25:35 +11:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
2018-05-17 03:14:53 +10:00
|
|
|
</FrameLayout>
|