Top "Viewpropertyanimator" questions

ViewPropertyAnimator provides a simple way to animate several properties in parallel, using a single Animator internally.

Android property animation: how to increase view height?

How to increase the view height using Property Animations in Android? ObjectAnimator a = ObjectAnimator.ofFloat(viewToIncreaseHeight, "translationY", -100); a.setInterpolator(…

java android android-animation objectanimator viewpropertyanimator
How can I repeat a property animation?

I'm doing an animation of bubbles on the screen, but the bubbles stop after finishing the animation time. How do …

android animation android-animation viewpropertyanimator