如何放大图像但防止在ImageView中裁剪?

时间:2019-02-14 11:51:46

标签: android rotation imageview

我想创建一个MEC Wheel应用程序,其中有两个Wheels(图像)。背景图像通过手指手势旋转,而前景保持静态。另外,我希望可旋转的背景图像按比例放大。我也已经实现了它,但是当我旋转图像时,它显示为裁剪图像。我还要附加图像。This is the image when application starts

After Rotation it seem to be cropped.

1 个答案:

答案 0 :(得分:0)

我已通过使用onCreate()方法中的代码扩展它来解决此问题。

imgMECWheel.setScaleX(mScaleFactorBackground);
imgMECWheel.setScaleY(mScaleFactorBackground);