Android Animation Flicker

前端 未结 6 1367
天命终不由人
天命终不由人 2020-11-30 11:17

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

6条回答
  •  南方客
    南方客 (楼主)
    2020-11-30 12:06

    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.

提交回复
热议问题