aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res
diff options
context:
space:
mode:
authorMatthew Wong <wongma@protonmail.ch>2015-08-14 00:35:00 -0400
committerMatthew Wong <wongma@protonmail.ch>2015-08-14 17:38:16 -0400
commitca45e739dadbacfe76ccce3e2c79b308d292061a (patch)
treebbc93af9cfe80a540a94e1e4b0b325f5bd8b6d78 /app/src/main/res
parentac533d83aab29005f70c97ed939a6d6f2e13aa16 (diff)
Async populate the app list
Diffstat (limited to 'app/src/main/res')
-rw-r--r--app/src/main/res/layout/autofill_recycler_view.xml18
1 files changed, 13 insertions, 5 deletions
diff --git a/app/src/main/res/layout/autofill_recycler_view.xml b/app/src/main/res/layout/autofill_recycler_view.xml
index 27afa77d..4b4bcf26 100644
--- a/app/src/main/res/layout/autofill_recycler_view.xml
+++ b/app/src/main/res/layout/autofill_recycler_view.xml
@@ -1,12 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/autofill_recycler"
android:scrollbars="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
-</LinearLayout> \ No newline at end of file
+
+ <ProgressBar
+ style="?android:attr/progressBarStyleLarge"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:id="@+id/progress_bar"
+ android:indeterminate="true"
+ android:layout_centerInParent="true"
+ android:visibility="gone"/>
+</RelativeLayout> \ No newline at end of file