gpt4 book ai didi

Android wrap_content 不起作用 - 它太大了

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:07:45 26 4
gpt4 key购买 nike

我经常使用 wrap_content。它工作正常。

但最近出了点问题——如果我不给出图像的尺寸,它看起来比实际大很多。

可能是因为我必须使用 Android Studio。我不知道。

编辑:

image.png 大小为 160px x 160px

<ImageView
android:layout_width="160px"
android:layout_height="160px"
android:src="@drawable/image" />

这就是一切看起来都很好的样子。

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/image" />

但现在那张照片看起来太大了。

我知道正确的方法是在wrap_content中使用,但是因为这个问题我不能。

最佳答案

此处已回答类似问题:why is wrap content bigger than real pixel size?

我粘贴答案以节省时间:

一个非常好的支持多屏幕的解释在

http://developer.android.com/guide/practices/screens_support.html .

缩放后需要将图片放到各自的文件夹中。

例如如果你想要 100*100 的图像然后放置

75*75 in drawable-ldpi for Low density devices

100*100 in drawable-mdpi for Medium density devices

150*150 in drawable-hdpi for High density devices

200*200 in drawable-xhdpi for Extra High density devices

关于Android wrap_content 不起作用 - 它太大了,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27676146/

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