diff options
author | Matthew Wong <wongma7@outlook.com> | 2015-08-27 19:17:00 -0400 |
---|---|---|
committer | Matthew Wong <wongma7@outlook.com> | 2015-08-27 19:17:00 -0400 |
commit | a314563ca900522e9000223971a8f3c47ff9f668 (patch) | |
tree | 917b8f598a41a0e7e9a615232faef4b9b96be651 /app/src/main/res | |
parent | a59f5b4cc71e8e47ce96afbf09f97d1c8006cda3 (diff) |
Some UI loading for #119
Diffstat (limited to 'app/src/main/res')
-rw-r--r-- | app/src/main/res/layout/decrypt_layout.xml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app/src/main/res/layout/decrypt_layout.xml b/app/src/main/res/layout/decrypt_layout.xml index 0c80c9ed..b86005c2 100644 --- a/app/src/main/res/layout/decrypt_layout.xml +++ b/app/src/main/res/layout/decrypt_layout.xml @@ -39,6 +39,23 @@ android:layout_marginLeft="@dimen/activity_horizontal_margin"/> </LinearLayout> + <ProgressBar + style="?android:attr/progressBarStyleLarge" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginTop="32dp" + android:id="@+id/progress_bar" + android:layout_gravity="center_horizontal" + android:indeterminate="true" + android:visibility="gone"/> + <TextView + android:id="@+id/progress_bar_label" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center_horizontal" + android:text="Authentication Required" + android:visibility="gone"/> + <LinearLayout android:id="@+id/crypto_container" android:orientation="vertical" |