views:

121

answers:

1

How do i pause frame animation using AnimationDrawable?

A: 

From the API:

Animations do not have a pause method.

http://www.androidjavadoc.com/1.0_r1/android/view/animation/package-summary.html

Roflcoptr
thanks for the reply. Yes i am aware that there is no pause method, instead i implemented a custom class which implements Runnable and used postDelayed, removeCallbacks methods to accomplish the task. I am not sure whether this is a proper way of doing it.
croc