android图像视图大小不随图像缩放

android图像视图大小不随图像缩放,第1张

概述我有以下 android布局: <?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/mainTopLevel" android:layout_width="fill_pare 我有以下 android布局:
<?xml version="1.0" enCoding="utf-8"?><relativeLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"    androID:ID="@+ID/maintopLevel"    androID:layout_wIDth="fill_parent"    androID:layout_height="fill_parent">    <ImageVIEw        androID:ID="@+ID/orbitimage"        androID:layout_wIDth="wrap_content"        androID:layout_height="wrap_content"        androID:layout_alignParenttop="true"        androID:layout_alignParentleft="true"        androID:scaleType="fitStart"        androID:src="@drawable/earthorbit"        androID:padding="0dp"        androID:background="@androID:color/white"    />    <TextVIEw        androID:ID="@+ID/positionDesc"        androID:layout_wIDth="wrap_content"        androID:layout_height="wrap_content"        androID:minHeight="40dp"        androID:layout_below="@ID/orbitimage"        androID:text="should appear below image"   /></relativeLayout>

图像缩小了很多,但由于保持纵横比,它只占用屏幕的上半部分.

问题是图像视图本身具有原始高度,它占据整个屏幕并且文本从不显示.

(因此原始图像约为620 X 430,缩放图像约为250 X 200,但图像视图约为250 X 430)

有没有办法让图像视图的大小与图像的缩放大小完全匹配?

解决方法 它看起来类似于这个问题: Android ImageView size not scaling with source image,解决方案是将androID:adjustVIEwBounds =“true”添加到ImageVIEw 总结

以上是内存溢出为你收集整理的android图像视图大小不随图像缩放全部内容,希望文章能够帮你解决android图像视图大小不随图像缩放所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1137405.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存