I am using the following code to rotate a image in ImageView by an angle. Is there any simpler and less complex method available.
ImageView iv = (ImageView)f
Can also be done this way:-
imageView.animate().rotation(180).start();
got from here.