Menu
  • HOME
  • TAGS

Create circular reveal for pre-Lollipop devices (Android)

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!!...

GameObject.FindGameObjectWithTag returning (clone)?

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...

Make ObjectAnimator animation duration independent of global animator duration scale setting in developer options

android,animation,duration,objectanimator,animator

Had to use hidden API to access the setDurationScale method on the ValueAnimator object.

Don't run Object animator [closed]

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...