summaryrefslogtreecommitdiff
path: root/res/anim
diff options
context:
space:
mode:
authorYves Fischer <yvesf-git@xapek.org>2014-01-11 18:44:50 +0100
committerYves Fischer <yvesf-git@xapek.org>2014-01-11 18:48:48 +0100
commit002a2c3e1d0f091a48f8cc3eb7dce519870debaf (patch)
tree64140ef20603bcf66dc33b8f2c5416d006547cb1 /res/anim
downloadandiodine-002a2c3e1d0f091a48f8cc3eb7dce519870debaf.tar.gz
andiodine-002a2c3e1d0f091a48f8cc3eb7dce519870debaf.zip
import code
Diffstat (limited to 'res/anim')
-rw-r--r--res/anim/main_status_image_connect.xml14
-rw-r--r--res/anim/main_status_image_connected.xml11
-rw-r--r--res/anim/main_status_image_disconnect.xml9
-rw-r--r--res/anim/main_status_image_error.xml20
-rw-r--r--res/anim/main_status_image_idle.xml4
5 files changed, 58 insertions, 0 deletions
diff --git a/res/anim/main_status_image_connect.xml b/res/anim/main_status_image_connect.xml
new file mode 100644
index 0000000..dadf0d6
--- /dev/null
+++ b/res/anim/main_status_image_connect.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8"?>
+<scale xmlns:android="http://schemas.android.com/apk/res/android"
+ android:duration="200"
+ android:fromXScale="1.0"
+ android:fromYScale="1.0"
+ android:interpolator="@android:anim/overshoot_interpolator"
+ android:pivotX="50%"
+ android:pivotY="50%"
+ android:repeatCount="infinite"
+ android:repeatMode="restart"
+ android:toXScale="0.8"
+ android:toYScale="0.8" >
+
+</scale> \ No newline at end of file
diff --git a/res/anim/main_status_image_connected.xml b/res/anim/main_status_image_connected.xml
new file mode 100644
index 0000000..e9aba80
--- /dev/null
+++ b/res/anim/main_status_image_connected.xml
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="utf-8"?>
+<rotate xmlns:android="http://schemas.android.com/apk/res/android"
+ android:duration="2000"
+ android:fromDegrees="0"
+ android:interpolator="@android:anim/linear_interpolator"
+ android:pivotX="50%"
+ android:pivotY="50%"
+ android:repeatCount="infinite"
+ android:repeatMode="restart"
+ android:toDegrees="359" >
+</rotate> \ No newline at end of file
diff --git a/res/anim/main_status_image_disconnect.xml b/res/anim/main_status_image_disconnect.xml
new file mode 100644
index 0000000..49677b5
--- /dev/null
+++ b/res/anim/main_status_image_disconnect.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="utf-8"?>
+<translate xmlns:android="http://schemas.android.com/apk/res/android"
+ android:duration="200"
+ android:fromXDelta="20"
+ android:repeatCount="infinite"
+ android:repeatMode="reverse"
+ android:toXDelta="-20" >
+
+</translate> \ No newline at end of file
diff --git a/res/anim/main_status_image_error.xml b/res/anim/main_status_image_error.xml
new file mode 100644
index 0000000..55472d0
--- /dev/null
+++ b/res/anim/main_status_image_error.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<set xmlns:android="http://schemas.android.com/apk/res/android"
+ android:interpolator="@android:anim/decelerate_interpolator" >
+
+ <set
+ android:duration="200"
+ android:interpolator="@android:anim/anticipate_overshoot_interpolator" >
+ <scale
+ android:fromXScale="1.0"
+ android:fromYScale="1.0"
+ android:pivotX="50%"
+ android:pivotY="50%"
+ android:repeatCount="infinite"
+ android:repeatMode="reverse"
+ android:startOffset="800"
+ android:toXScale="2.8"
+ android:toYScale="0.0" />
+ </set>
+
+</set> \ No newline at end of file
diff --git a/res/anim/main_status_image_idle.xml b/res/anim/main_status_image_idle.xml
new file mode 100644
index 0000000..68802e7
--- /dev/null
+++ b/res/anim/main_status_image_idle.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8"?>
+<set xmlns:android="http://schemas.android.com/apk/res/android" >
+
+</set> \ No newline at end of file