In my app, i would like rotate an ImageView
by setRotationY()
. In fact, it does. Just like from b to d, mirror effect and when i use setRotation(45)
before setRotationY()
, the result is that setRotationY
is according to the device Y-axis
, and i want the rotationY
according to view self.
How? Can you guide me? Thanks!
ObjectAnimator animation = ObjectAnimator.ofFloat(view, "rotationY", 0.0f, 360f);
animation.setDuration(3600);
animation.setRepeatCount(ObjectAnimator.INFINITE);
animation.setInterpolator(new AccelerateDecelerateInterpolator());
animation.start();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With