ImageView没有旋转吗?

ImageView arrow1;
arrow1  =(ImageView) findViewById(R.id.arrow1);
Matrix mtx = new Matrix();
mtx.postRotate(90);
arrow1.setImageMatrix(mtx);


有什么建议么?

最佳答案

检查此:http://www.androidpeople.com/android-image-rotate-example

我认为这可能对您有帮助

07-27 14:04