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
2010-05-19 10:06:04
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
2010-05-20 10:41:45