gpt4 book ai didi

机器人 : make imageview full screen size

转载 作者:太空宇宙 更新时间:2023-11-03 12:19:50 25 4
gpt4 key购买 nike

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

然而,这是我得到的:

enter image description here

最佳答案

1- 将 android:scaleType="matrix" 更改为 android:scaleType="fitXY" 这意味着图像将被拉伸(stretch)以适合所有边parent ( ImageView ) ,但这会改变它的分辨率,如果你想保持分辨率使用 android:scaleType="centerInside"

关于机器人 : make imageview full screen size,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19100621/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com