3

我知道这已经在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>

但是,这就是我得到的:

在此处输入图像描述

4

1 回答 1

7

1-更改android:scaleType="matrix"android:scaleType="fitXY"这意味着图像将被拉伸以适合父级( ImageView )的所有侧面,但这将改变其分辨率,如果您想保持使用分辨率android:scaleType="centerInside"

于 2013-09-30T18:07:43.823 回答