2019-06-03 23:25:05 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2022-04-04 10:00:54 +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"
|
|
|
|
android:layout_height="match_parent"
|
2021-05-25 22:39:06 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2022-04-04 10:00:54 +02:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:background="?attr/primaryBackgroundColor">
|
2019-06-03 23:25:05 +02:00
|
|
|
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
2020-03-28 13:44:45 +01:00
|
|
|
android:id="@+id/appbar"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-03-28 13:44:45 +01:00
|
|
|
android:layout_height="wrap_content"
|
2021-05-25 22:39:06 +02:00
|
|
|
app:elevation="0dp"
|
2020-03-28 13:44:45 +01:00
|
|
|
android:theme="@style/Widget.AppCompat.SearchView">
|
2019-06-03 23:25:05 +02:00
|
|
|
|
2020-08-08 17:43:14 +02:00
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
2019-06-03 23:25:05 +02:00
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-08-08 17:43:14 +02:00
|
|
|
android:background="?attr/primaryBackgroundColor">
|
2019-06-03 23:25:05 +02:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/close"
|
2020-04-28 14:39:41 +02:00
|
|
|
android:layout_width="@dimen/close_button_size"
|
|
|
|
android:layout_height="@dimen/close_button_size"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:layout_marginRight="15dp"
|
|
|
|
android:layout_marginLeft="15dp"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:contentDescription="@string/close"
|
2021-04-13 20:56:50 +02:00
|
|
|
android:background="?android:attr/selectableItemBackgroundBorderless"
|
|
|
|
android:focusable="true"
|
|
|
|
android:clickable="true"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:src="@drawable/ic_close" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/toolbar_title"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:text="@string/adminUsers"
|
2020-03-04 20:37:28 +01:00
|
|
|
android:textColor="?attr/primaryTextColor"
|
2022-04-04 10:00:54 +02:00
|
|
|
android:ellipsize="none"
|
|
|
|
android:scrollbars="horizontal"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:layout_marginEnd="20dp"
|
|
|
|
android:textSize="18sp" />
|
2019-06-03 23:25:05 +02:00
|
|
|
|
2020-08-08 17:43:14 +02:00
|
|
|
</com.google.android.material.appbar.MaterialToolbar>
|
2019-06-03 23:25:05 +02:00
|
|
|
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
|
|
|
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
|
2022-04-04 10:00:54 +02:00
|
|
|
android:id="@+id/pull_to_refresh"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:layout_width="match_parent"
|
2022-04-04 10:00:54 +02:00
|
|
|
android:layout_marginTop="56dp"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
2022-04-04 10:00:54 +02:00
|
|
|
android:id="@+id/recycler_view"
|
2019-06-03 23:25:05 +02:00
|
|
|
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>
|
|
|
|
|
2022-04-04 10:00:54 +02:00
|
|
|
<com.google.android.material.progressindicator.LinearProgressIndicator
|
|
|
|
android:id="@+id/progress_bar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="56dp"
|
|
|
|
android:indeterminate="true"
|
|
|
|
style="@style/Widget.MaterialComponents.LinearProgressIndicator"
|
|
|
|
app:indicatorColor="?attr/progressIndicatorColor" />
|
|
|
|
|
2019-06-03 23:25:05 +02:00
|
|
|
<TextView
|
2022-04-04 10:00:54 +02:00
|
|
|
android:id="@+id/no_data_users"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-08-08 17:43:14 +02:00
|
|
|
android:layout_margin="16dp"
|
2019-06-03 23:25:05 +02:00
|
|
|
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"
|
2022-04-04 10:00:54 +02:00
|
|
|
android:visibility="gone" />
|
2019-06-03 23:25:05 +02:00
|
|
|
|
2022-04-04 10:00:54 +02:00
|
|
|
</RelativeLayout>
|