android:make imageview全屏大小

时间:2013-09-30 17:52:26

标签: android

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

但是,这就是我得到的:

enter image description here

1 个答案:

答案 0 :(得分:7)

1-将android:scaleType="matrix"更改为android:scaleType="fitXY",这意味着图片将被拉伸以适合父级的所有边(ImageView),但如果您想要保留,则会改变其分辨率解决方案使用android:scaleType="centerInside"