summaryrefslogtreecommitdiff
path: root/app/src/main/res/drawable/progress_spinner.xml
diff options
context:
space:
mode:
authorcyberta <cyberta@riseup.net>2023-08-07 01:51:31 +0000
committercyberta <cyberta@riseup.net>2023-08-07 01:51:31 +0000
commit5c8c3bcc384631edd45983b8beb066cf637695d9 (patch)
tree0b1be88a74c9594036d86147177d7ca5d9f67241 /app/src/main/res/drawable/progress_spinner.xml
parent46bbdf33a07f65c51f93f51075c6b11b43bad4ee (diff)
parent34539d080f2ce05eb668267180283f8332835d2c (diff)
Merge branch 'first_run_improvements' into 'master'
update design and UX for provider setup See merge request leap/bitmask_android!252
Diffstat (limited to 'app/src/main/res/drawable/progress_spinner.xml')
-rw-r--r--app/src/main/res/drawable/progress_spinner.xml28
1 files changed, 28 insertions, 0 deletions
diff --git a/app/src/main/res/drawable/progress_spinner.xml b/app/src/main/res/drawable/progress_spinner.xml
new file mode 100644
index 00000000..ae2c4f69
--- /dev/null
+++ b/app/src/main/res/drawable/progress_spinner.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="utf-8"?>
+<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
+ <item
+ android:left="-25dp"
+ android:right="-25dp"
+ android:top="-10dp"
+ android:bottom="-10dp"
+ >
+ <animated-rotate
+ android:drawable="@drawable/rotate_progress_image"
+ android:pivotX="50.0%"
+ android:pivotY="50.0%"
+ android:fromDegrees="0.0"
+ android:toDegrees="360.0"
+ >
+ </animated-rotate>
+ </item>
+ <item
+ android:bottom="15dp"
+ android:top="15dp"
+ >
+ <shape android:shape="oval">
+ <solid android:color="@color/white"/>
+ <size android:width="250dp" android:height="250dp" />
+ </shape>
+ </item>
+
+</layer-list> \ No newline at end of file