Android 旋转ImageView
Posted 王睿丶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 旋转ImageView相关的知识,希望对你有一定的参考价值。
imageView = findViewById(R.id.im_image);
Matrix m = new Matrix();
m.setRotate(180);
Bitmap bitmap = ((BitmapDrawable) getResources().getDrawable(R.drawable.image)).getBitmap();
bitmap = Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(),bitmap.getHeight(), m, true);
imageView.setImageBitmap(bitmap);
参考:https://www.jb51.net/article/71928.htm
以上是关于Android 旋转ImageView的主要内容,如果未能解决你的问题,请参考以下文章
Android:ImageView旋转动画 - 保持比例类型适合中心