0

I am using nineoldandroid.

Q: How to change the animation playback time after the animation begins to accelerate animation ends? In other words,How to change the duration?

see2851
  • 627
  • 1
  • 9
  • 13

1 Answers1

0

You can use a Interpolator in your animation like this one:

anim.setInterpolator(new AccelerateDecelerateInterpolator());

Source: Setting Interpolators

bean_droid
  • 117
  • 7