I\'ve been trawling through as many threads on this topic that I can find on the flicker that arises in Android 2.2 when dealing with AnimationListeners, but I can\'t quite
I searched for all stackoverflow posts for animation issue (flicker and sluggish). I didnt find any perfect answer. But I have found the solution for the same, which is as below,
onStart of Animation use,
view_you_want_to_animate.setDrawingCacheEnabled(true);
onEnd of Animation use,
view_you_want_to_animate.setDrawingCacheEnabled(false);
Now my view does not have flicker or sluggish behavior when my view is animating. It works well for me.