我知道这已经在stackoverflow中被问到了几次;我徒劳地尝试了所有的答案.我在我的 Android应用程序中有自定义imageview(用于滚动/缩放).我以编程方式设置要在imageview中显示的图像(因此,IDE中
由于我的触摸/缩放代码取决于矩阵比例类型,因此无法从矩阵更改scaletype.
activity_main.xml中
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context=".ActivityHome" > <myTouchImageView android:id="@+id/imgView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_gravity="center_horizontal" android:layout_marginLeft="0dp" android:layout_marginTop="0dp" android:scaleType="matrix" /> </RelativeLayout>
但是,这就是我得到的:
1-将android:scaleType =“matrix”更改为android:scaleType =“fitXY”,这意味着图像将被拉伸以适合父级(ImageView)的所有侧面,但是如果要保留,这将改变其分辨率分辨率使用android:scaleType =“centerInside”.