使用Matrix.postRotate()方法后自动缩放图像

时间:2013-05-20 16:25:40

标签: java android image matrix scale

我使用Matrix.postRotate()方法旋转图像,但现在它不再自动缩放以适合父LinearLayout。这是相关的代码......

private ImageView rotateimage(ImageView dotimage) {

Matrix matrix=new Matrix();
dotimage.setScaleType(ScaleType.MATRIX);
matrix.postRotate((float) 90, 374, 374);
dotimage.setImageMatrix(matrix);

return dotimage;}

这是布局的xml和ImageView ...

<LinearLayout
    android:id="@+id/LinearLayout2"
    android:layout_width="550dp"
    android:layout_height="550dp"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true" >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:contentDescription="@string/dotdescription"
        android:src="@drawable/dots1" />
</LinearLayout>

我已使用Matrix.postScale()方法修正了缩放比例,但我真的很好奇为什么自动缩放不再有效。

提前致谢!

0 个答案:

没有答案