diff options
author | daniel oeh <daniel.oeh@gmail.com> | 2012-10-10 17:36:14 +0200 |
---|---|---|
committer | daniel oeh <daniel.oeh@gmail.com> | 2012-10-10 17:36:14 +0200 |
commit | 6f4cf5fbdcc312bae9139bd347b4d085b300ee26 (patch) | |
tree | 113a653cb6cb356c4afb7578c09bf70d4cd7ecf0 /res/anim | |
parent | 2d2102b7abfbde16290994e4f9abe2a321ec65c3 (diff) | |
download | AntennaPod-6f4cf5fbdcc312bae9139bd347b4d085b300ee26.zip |
Improved visibility change animation in videoplayer
Diffstat (limited to 'res/anim')
-rw-r--r-- | res/anim/fade_in.xml | 9 | ||||
-rw-r--r-- | res/anim/fade_out.xml | 10 |
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 |