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
How to reset view to original state after using animators to animates its some properties?

I am using animators (ObjectAnimator) to animate few properties (scale, rotate) of a view. Target view is animating properly when …

android animation objectanimator viewpropertyanimator