ssantos
ssantos

Reputation: 16526

Android Animation progress listener

I'm running a TranslateAnimation and I'd need to be able to get the translate values on each 'frame' of the animation. Tried AnimationListener but it seems it only listen to start, repeat and end events.

Is there any way to get interpolated values during an animation?

Upvotes: 2

Views: 1710

Answers (1)

pskink
pskink

Reputation: 24720

yes, extend TranslateAnimation and override applyTransformation()

Upvotes: 2

Related Questions