2019-06-03 23:25:05 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-08-09 10:23:51 +02:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-08-09 10:23:51 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2019-06-03 23:25:05 +02:00
|
|
|
|
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
|
|
|
android:id="@+id/pullToRefresh"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/recyclerView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-03-04 20:37:28 +01:00
|
|
|
android:background="?attr/primaryBackgroundColor"
|
2020-03-15 16:09:26 +01:00
|
|
|
android:scrollbars="vertical" />
|
2019-06-03 23:25:05 +02:00
|
|
|
|
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
|
|
|
|
2020-08-09 10:23:51 +02:00
|
|
|
<com.google.android.material.progressindicator.ProgressIndicator
|
|
|
|
android:id="@+id/progress_bar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
style="@style/Widget.MaterialComponents.ProgressIndicator.Linear.Indeterminate"
|
|
|
|
app:indicatorColor="?attr/progressIndicatorColor" />
|
|
|
|
|
2019-06-03 23:25:05 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/noDataEmails"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_margin="15dp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/noDataFound"
|
2020-03-04 20:37:28 +01:00
|
|
|
android:textColor="?attr/primaryTextColor"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:textSize="20sp"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
2020-06-01 17:53:56 +02:00
|
|
|
</RelativeLayout>
|