i implemented a TranslateAnimation, added a listener to the animation and after that animation i want to update the view layout params so the view is responsable to clicks.

The problem, in Gingerbread the animation is working but i cant click the view, even if i updated the LayoutParams: the Position of the view is still 0 x 0. In Android 4, the view is still clickable after the animation and the new positions are working too.

Is there a difference between TranslateAnimations and LayoutParams in this 2 Operating system versions?

link|improve this question
Seems like the answer is yes :) Did you set fillAfter = true on your animation? – Nick Campion Feb 23 at 14:18
Yes, i have set this. I have solved the problem: in the onAnimationEnd() i was setting the new LayoutParams for the View object, but the View doesnt updates the new positions, dunno why. Now i have implemented a onLayout() function in my class that contains this animated views and its working on both Gingerbread and Android 4 :) – Andreas Bf Feb 23 at 14:54
If this has been solved, you should answer it with your solution and accept the answer. – Chris Morgan May 7 at 0:28
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.