summaryrefslogtreecommitdiff
path: root/res/anim
diff options
context:
space:
mode:
authordaniel oeh <daniel.oeh@gmail.com>2012-10-10 17:36:14 +0200
committerdaniel oeh <daniel.oeh@gmail.com>2012-10-10 17:36:14 +0200
commit6f4cf5fbdcc312bae9139bd347b4d085b300ee26 (patch)
tree113a653cb6cb356c4afb7578c09bf70d4cd7ecf0 /res/anim
parent2d2102b7abfbde16290994e4f9abe2a321ec65c3 (diff)
downloadAntennaPod-6f4cf5fbdcc312bae9139bd347b4d085b300ee26.zip
Improved visibility change animation in videoplayer
Diffstat (limited to 'res/anim')
-rw-r--r--res/anim/fade_in.xml9
-rw-r--r--res/anim/fade_out.xml10
2 files changed, 19 insertions, 0 deletions
diff --git a/res/anim/fade_in.xml b/res/anim/fade_in.xml
new file mode 100644
index 000000000..d3567dc31
--- /dev/null
+++ b/res/anim/fade_in.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="utf-8"?>
+<set xmlns:android="http://schemas.android.com/apk/res/android" >
+
+ <alpha
+ android:duration="500"
+ android:fromAlpha="0.0"
+ android:interpolator="@android:anim/accelerate_interpolator"
+ android:toAlpha="1.0" />
+</set> \ No newline at end of file
diff --git a/res/anim/fade_out.xml b/res/anim/fade_out.xml
new file mode 100644
index 000000000..ddf12d13f
--- /dev/null
+++ b/res/anim/fade_out.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="utf-8"?>
+<set xmlns:android="http://schemas.android.com/apk/res/android">
+
+ <alpha
+ android:duration="500"
+ android:fromAlpha="1.0"
+ android:interpolator="@android:anim/accelerate_interpolator"
+ android:toAlpha="0.0" />
+
+</set> \ No newline at end of file