android,animation,material-design,animator
I find a library for you. Circular reveal, is compatible with 2.3 devices. https://github.com/ozodrukh/CircularReveal Hope it hepls you!!...
unity3d,tags,gameobject,animator
This seems to be a long running bug in unity, dating all the way back to 4.3. Which hopefully will be fixed in unity 5 It seems the animator window causes a clone for some reason, which is not removable. There are only 2 ways to bypass this problem as...
android,animation,duration,objectanimator,animator
Had to use hidden API to access the setDurationScale method on the ValueAnimator object.
java,android,object,objectanimator,animator
The basic problem with your code, is that you created an array of ObjectAnimator's, but you did not fill the array with actual objects (all array elements are null by default). Your program is crashing because imganim[0] is null, and you are trying to call a method on a null...