I am developing a game where a user needs to tap on the image in ImageView to rotate it. On each tap image rotates by 90 degrees in clockwise direction. But image is taking
You don't need to rotate the object, rotating the view should be enough. If you are aiming API>=11 you can always do this.
mImageView.setRotation(angle);
Cheers.