Hi, I'm doing an Image editing app and I need to know how to do a 90-degree rotation of an imageView and replace the original with the rotated image I searched the sites and found this way, but when I do the rotation, the image gets very small and I can not rotate it again. Thank you in advance, every tip and help is welcome!
public void rotacionar(View v){
resultView; //é a minha imageView
Matrix m = new Matrix();
resultView.setScaleType(ImageView.ScaleType.MATRIX);
m.postRotate(180, 200, 200);
resultView.setImageMatrix(m);
}