summaryrefslogtreecommitdiff
path: root/app/src/main/res
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res')
-rw-r--r--app/src/main/res/layout/password_recycler_view.xml18
1 files changed, 12 insertions, 6 deletions
diff --git a/app/src/main/res/layout/password_recycler_view.xml b/app/src/main/res/layout/password_recycler_view.xml
index f58543ac..dd6b00c1 100644
--- a/app/src/main/res/layout/password_recycler_view.xml
+++ b/app/src/main/res/layout/password_recycler_view.xml
@@ -10,13 +10,19 @@
android:clipToPadding="false"
tools:context="com.zeapo.pwdstore.PasswordFragment">
- <androidx.recyclerview.widget.RecyclerView
- android:id="@+id/pass_recycler"
- android:scrollbars="none"
+ <androidx.swiperefreshlayout.widget.SwipeRefreshLayout
+ android:id="@+id/swipe_refresher"
android:layout_width="match_parent"
- android:layout_height="match_parent"
- tools:listitem="@layout/password_row_layout"
- tools:itemCount="20" />
+ android:layout_height="match_parent">
+
+ <androidx.recyclerview.widget.RecyclerView
+ android:id="@+id/pass_recycler"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:scrollbars="none"
+ tools:itemCount="20"
+ tools:listitem="@layout/password_row_layout" />
+ </androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
<LinearLayout
android:id="@+id/create_options"