ImageButton自动缩放问题

发布于 2024-11-18 03:13:13 字数 104 浏览 4 评论 0原文

我正在尝试对小型设备的代码进行故障排除,而我在relativelayout中使用的imagebuttons似乎会以某种方式自动缩放。我尝试了各种方法来防止它们扩展,但没有一个有效。有什么建议吗?

I'm trying to troubleshoot my code for a small form factor device and the ImageButtons I'm using in my RelativeLayout seem to get automatically scaled larger somehow. I've tried various methods of preventing them from scaling, but none of them have worked. Any suggestions?

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

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

发布评论

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

评论(2

魔法唧唧 2024-11-25 03:13:13

我认为您必须了解防止结垢的密度注意事项。

避免预缩放的最简单方法是使用 nodpi 配置限定符将资源放入资源目录。例如:

res/drawable-nodpi/icon.png

当系统使用此文件夹中的 icon.png 位图时,它不会根据当前设备密度对其进行缩放。


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

I think you have to see Density Considerations for Preventing from Scaling.

The easiest way to avoid pre-scaling is to put the resource in a resource directory with the nodpi configuration qualifier. For example:

res/drawable-nodpi/icon.png

When the system uses the icon.png bitmap from this folder, it does not scale it based on the current device density.

From
http://developer.android.com/guide/practices/screens_support.html#DensityConsiderations

半透明的墙 2024-11-25 03:13:13

尝试设置:

android:maxHeight
android:maxWidth

您能告诉我们到目前为止您尝试过哪些方法吗?

Try setting:

android:maxHeight
android:maxWidth

Can you tell us what methods you've tried so far?

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