ImageView使手机中的图像比源图像大

发布于 2024-12-10 01:10:36 字数 427 浏览 0 评论 0原文

我想在 ImageView 中正常显示图像,但问题是当我在手机中测试它时它总是变大,为什么?
这是源图像:
在此处输入图像描述

xml 代码:

<ImageView 
 android:layout_width="wrap_content" 
 android:layout_height="wrap_content" 
 android:id="@+id/ButtonMemorizeLayoutNextSura"
 android:src="@drawable/quran_slidingdrawer_leftarrow_state"           
 android:layout_marginRight="10dip"   />

I want to normally display an Image in an ImageView, though the problem is that it always becomes larger when I test it in my phone, Why?
Here is the src image:
enter image description here

xml code:

<ImageView 
 android:layout_width="wrap_content" 
 android:layout_height="wrap_content" 
 android:id="@+id/ButtonMemorizeLayoutNextSura"
 android:src="@drawable/quran_slidingdrawer_leftarrow_state"           
 android:layout_marginRight="10dip"   />

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

绅士风度i 2024-12-17 01:10:36

最可能的罪魁祸首是 dpi 缩放。尝试将图像移至 drawable-nodpi 文件夹(如果不存在则创建一个)。

The most likely culprit is dpi scaling. Try moving the image to the drawable-nodpi folder (create one if it does not exist).

箜明 2024-12-17 01:10:36

您可以尝试在 ImageView 中使用scaleType。

<ImageView android:layout_width="wrap_content"  
android:layout_height="wrap_content" android:id="@+id/ButtonMemorizeLayoutNextSura" 
android:src="@drawable/quran_slidingdrawer_leftarrow_state" android:scaleType="fitXY"/>

you can try using scaleType in your ImageView.

<ImageView android:layout_width="wrap_content"  
android:layout_height="wrap_content" android:id="@+id/ButtonMemorizeLayoutNextSura" 
android:src="@drawable/quran_slidingdrawer_leftarrow_state" android:scaleType="fitXY"/>
夏尔 2024-12-17 01:10:36

设置标签

Android:scale type = FIT_CENTER

或试用中心

Set the tag

Android:scale type = FIT_CENTER

OR TRY CENTER

依 靠 2024-12-17 01:10:36

不要将高度和宽度作为换行内容给出,而是根据您的意愿使用 dial 给出高度和宽度。

Instead of giving height and width as wrap content, give height and width according to your wish using dip.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文