[android-developers] Re: ViewFlipper animation and Gallery on the same activity

2011-08-25 Thread Tomas Prochazka
I found that it maybe doesn't cause animation but child.setVisibility(View.GONE) in ViewAnimator class. I tried to call setVisibility(View.GONE) on some my object during Gallery swype and it also cause stop animation of swiping. On Aug 24, 8:39 pm, Tomas Prochazka tomas.procha...@gmail.com wrote:

[android-developers] Re: ViewFlipper animation and Gallery on the same activity

2011-08-25 Thread Tomas Prochazka
It is caused by child.setVisibility(View.GONE); in ViewAnimator class it cause remeasure and redraw of whole activity screen :-( I used source code put in on own package and modify it to child.setVisibility(View.INVISIBLE); On Aug 25, 10:33 am, Tomas Prochazka tomas.procha...@gmail.com wrote: I