2020-07-07 16:20:43 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-08-04 22:50:04 +02:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
2020-07-07 16:20:43 +02:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-08-04 22:50:04 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2020-07-07 16:20:43 +02:00
|
|
|
android:id="@+id/userAccountsFrame"
|
2020-08-04 22:50:04 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-07-07 16:20:43 +02:00
|
|
|
android:background="?attr/primaryBackgroundColor">
|
|
|
|
|
|
|
|
<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"
|
|
|
|
android:background="?attr/primaryBackgroundColor"
|
|
|
|
android:scrollbars="vertical" />
|
|
|
|
|
|
|
|
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
|
|
|
|
|
2020-08-04 22:50:04 +02:00
|
|
|
<com.google.android.material.floatingactionbutton.ExtendedFloatingActionButton
|
|
|
|
android:id="@+id/addNewAccount"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="end|bottom"
|
|
|
|
android:layout_margin="16dp"
|
|
|
|
android:text="@string/addNewAccount"
|
|
|
|
android:contentDescription="@string/addNewAccount"
|
|
|
|
android:textColor="@color/colorWhite"
|
2020-08-20 18:21:55 +02:00
|
|
|
android:backgroundTint="?attr/fabColor"
|
2020-08-04 22:50:04 +02:00
|
|
|
app:layout_behavior="com.google.android.material.behavior.HideBottomViewOnScrollBehavior"
|
|
|
|
app:iconTint="@color/colorWhite"
|
|
|
|
app:icon="@drawable/ic_add" />
|
|
|
|
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|