I\'m using the wonderful framework NineOldAndroids, but I can\'t find anything to set the pivot on my animated views. Specifically, I\'m trying to do a scaleX
+
AnimatorProxy.wrap(...) didn't have any effect in my case. However, the following line did the trick:
ViewHelper.setPivotY(myView, 0)
Thanks to the author Jake Wharton, here is the solution:
AnimatorProxy.wrap(myView).setPivotX(0);
at any time, even after having called ObjectAnimator.start()
.