Can you have multiple interpolators on a single view when using ViewPropertyAnimator?
- by steven
For example, I would like to animate a view such that it moves down in the y direction while decelerating, and at the same time it undergoes an alpha change linearly.
The code would look something like this:
myView.animate().translationY(100).setDuration(1000).setInterpolator(new DecelerateInterpolator());…