Reputation: 9029
I have a property ViewPropertyAnimator
that rotates ImageView
on axis y
animate().rotationY(180).alpha(0).setDuration(300).start();
it's working well but in a Huawei device it disappears ImageView
. I changed rotationY
to rotation
and it was working. What is wrong?
Upvotes: 2
Views: 341