当前位置 : 主页 > 手机开发 > android >

android:make imageview全屏大小

来源:互联网 收集:自由互联 发布时间:2021-06-11
我知道这已经在stackoverflow中被问到了几次;我徒劳地尝试了所有的答案.我在我的 Android应用程序中有自定义imageview(用于滚动/缩放).我以编程方式设置要在imageview中显示的图像(因此,IDE中
我知道这已经在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>

但是,这就是我得到的:

1-将and​​roid:scaleType =“matrix”更改为android:scaleType =“fitXY”,这意味着图像将被拉伸以适合父级(ImageView)的所有侧面,但是如果要保留,这将改变其分辨率分辨率使用android:scaleType =“centerInside”.
网友评论