[Android] Insert a comment about a bug in the compatibility library

Ludovic Fauvet git at videolan.org
Mon May 27 19:06:13 CEST 2013


vlc-ports/android | branch: master | Ludovic Fauvet <etix at videolan.org> | Mon May 27 18:28:57 2013 +0200| [5d4fef647434cac01a7ac9ca5faacb7cc1081ebe] | committer: Ludovic Fauvet

Insert a comment about a bug in the compatibility library

> http://git.videolan.org/gitweb.cgi/vlc-ports/android.git/?a=commit;h=5d4fef647434cac01a7ac9ca5faacb7cc1081ebe
---

 vlc-android/src/org/videolan/vlc/widget/AudioMiniPlayer.java |    4 ++++
 1 file changed, 4 insertions(+)

diff --git a/vlc-android/src/org/videolan/vlc/widget/AudioMiniPlayer.java b/vlc-android/src/org/videolan/vlc/widget/AudioMiniPlayer.java
index e7e0806..020864b 100644
--- a/vlc-android/src/org/videolan/vlc/widget/AudioMiniPlayer.java
+++ b/vlc-android/src/org/videolan/vlc/widget/AudioMiniPlayer.java
@@ -215,6 +215,10 @@ public class AudioMiniPlayer extends Fragment implements IAudioPlayer {
     public void hide() {
         FragmentTransaction ft = getActivity().getSupportFragmentManager()
                 .beginTransaction();
+        /*
+            The exit animation won't run because of a bug in the compatibility library.
+            See: https://code.google.com/p/android/issues/detail?id=32405
+        */
         ft.setCustomAnimations(0, R.anim.anim_leave_bottom);
         ft.hide(this);
         ft.commit();



More information about the Android mailing list