我在imageview上有一个图像比例的问题。 imageview具有scaletype矩阵。我有一个自定义Touchlistener让我进行缩放和拖放等等。但是当我在imageview上进行setimage时,它会变焦。
我尝试解决此问题,在此网络和其他网站上搜索许多解决方案。但最后一个是:
ImageView iv = (ImageView) findViewById(R.id.imageView);
iv.setImageResource(R.drawable.test_image);
Matrix mMatrix = iv.getImageMatrix(); mMatrix.setRectToRect(new
RectF(0, 0, iv.getMeasuredWidth(), iv.getMeasuredHeight()),new
RectF(0, 0, iv.getMeasuredWidth(), iv.getMeasuredHeight()),
Matrix.ScaleToFit.CENTER);
,xml是:
<RelativeLayout...>
.....
<FrameLayout
android:id="@+id/root"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_below="@+id/buttonlayer">
<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:adjustViewBounds="true"
android:scaleType="matrix"
android:contentDescription="@string/desc"
/>
</FrameLayout>
</RelativeLayout>
但我无法解决它!,imageview继续显示错误!
提前致谢!