我知道这已经在stackoverflow中被问过几次了;我徒劳地尝试了所有答案。我的 android 应用程序中有一个自定义图像视图(用于滚动/缩放)。我以编程方式设置要在图像视图中显示的图像(因此,图像视图在 IDE 中为空)。但是我尝试了,图像视图的左侧和顶部似乎有一些无法删除的填充。请帮忙。这是代码(以下是我从stackoverflow尝试的可能选项之一)无法从矩阵更改缩放类型,因为我的触摸/缩放代码取决于矩阵缩放类型。
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>
但是,这就是我得到的: