aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/res/layout/status_indicator.xml
diff options
context:
space:
mode:
authorVincent Breitmoser <valodim@mugenguild.com>2015-09-01 06:40:28 +0200
committerVincent Breitmoser <valodim@mugenguild.com>2015-09-01 06:40:28 +0200
commit9668abfe9edf09f36dc361b008106708f5c1dd9c (patch)
treeab1e67c37cdf611da6f0af242f273858d5a34fd0 /OpenKeychain/src/main/res/layout/status_indicator.xml
parent261c83043b4e2c7116f11bacf2e58682e68fd65c (diff)
downloadopen-keychain-9668abfe9edf09f36dc361b008106708f5c1dd9c.tar.gz
open-keychain-9668abfe9edf09f36dc361b008106708f5c1dd9c.tar.bz2
open-keychain-9668abfe9edf09f36dc361b008106708f5c1dd9c.zip
add simple StatusIndicator widget
Diffstat (limited to 'OpenKeychain/src/main/res/layout/status_indicator.xml')
-rw-r--r--OpenKeychain/src/main/res/layout/status_indicator.xml30
1 files changed, 30 insertions, 0 deletions
diff --git a/OpenKeychain/src/main/res/layout/status_indicator.xml b/OpenKeychain/src/main/res/layout/status_indicator.xml
new file mode 100644
index 000000000..6419e3e34
--- /dev/null
+++ b/OpenKeychain/src/main/res/layout/status_indicator.xml
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="utf-8"?>
+<merge xmlns:android="http://schemas.android.com/apk/res/android">
+
+ <ImageView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:src="@drawable/ic_chevron_right_grey_24dp"
+ />
+
+ <ProgressBar
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:indeterminate="true"
+ />
+
+ <ImageView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:src="@drawable/ic_check_white_24dp"
+ android:tint="@color/android_green_light"
+ />
+
+ <ImageView
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:src="@drawable/ic_close_white_24dp"
+ android:tint="@color/android_red_light"
+ />
+
+</merge> \ No newline at end of file