Does anyone know or can give an example how this fragment animation is done when removing a fragments framelayout container so when the container is set to GONE, it just doesnt disapere but instead animates? ie. slide left Thnx!

link|improve this question

75% accept rate
feedback

1 Answer

  1. Implement the Animation you want.
  2. Create a LayoutAnimationController using the animation created in Step 1.
  3. Set the LayoutAnimation of your ViewGroup to the LayoutAnimationController created in Step 2.
  4. Implement an Animation.AnimationListener and set the FrameLayout's visibility to GONE in the onAnimationEnd method.
  5. Set the LayoutAnimationListener to Listener implemented in Step 4.
  6. Start the Animation by startLayoutAnimation
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.