想使Imageliew中图片缩放、旋转、倾斜、移动;可使用setImageMatrix()方法,想设置图片透明度可使用setAlpha()方法或在控件中设置android:alpha="1.0f"如果想使用setImageMatrix()方法需在控件中设置android:scaleType="matrix"
例.
<ImageView
android:id="@+id/imageView"
... ...
android:scaleType="matrix"
android:alpha="0.5"
/>
ImageView imageView=findViewById(R.id.imageView);
Matrix matrix=new Matrix();
matrix.setScale(0.5f,0.5f);//缩放
matrix.setTranslate(150,150);//翻转
matrix.setRotate(180);//旋转
matrix.setSkew(25,65);//倾斜
imageliew.setImageMatrix(matrix);
tag:Matrix;图像编辑;Android;ImageView;图片编辑