确定多个 Android 屏幕尺寸/密度的图像尺寸

发布于 2024-08-30 01:31:16 字数 508 浏览 3 评论 0原文

我一直在查看 Android 上的支持多屏幕文档,我只是需要一些额外的说明...

据我了解,设计三个独特的界面(ldpi、mdpi 和 hdpi)将是以最小的缩放/扭曲支持所有潜在 Android 屏幕的最佳方式。

是的,我知道有类似的问题发布,但是...如果我为基准 mdpi 创建一个图像(假设我的图像是 300x210,仅作为示例)如何确定我需要在 ldpi 重新创建该图像的大小&高清? 这篇文章以及谷歌搜索让我相信 ldpi 只是 mdpi 图像的 75%,而 hdpi 是 mdpi 图像的 150%。这准确吗?

I've been reviewing the Supporting Multiple Screens documentation on the Android and I just need some additional clarification...

It's my understanding that designing three unique interfaces (ldpi, mdpi, and hdpi) would be the best way to go about supporting all the potential android screens with minimal scaling/distortion.

Yes, I know there are similar questions posted, however... If I create an image for the benchmark mdpi (let's say my image is 300x210, just for example) how to I determine what size I will need to recreate that image at ldpi & hdpi? This post as well as a google search leads me to believe that ldpi is just 75% of the mdpi image, and the hdpi is 150% of the mdpi image. Is this accurate?

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

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

发布评论

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

评论(1

脸赞 2024-09-06 01:31:17

-ldpi 约为 120dpi,-mdpi 约为 160dpi,-hdpi 约为 240dpi。

因此,320 像素宽的图像在 -mdpi 中为 2 英寸。如果您想要在 -ldpi 上显示 2 英寸图像,您希望它为 240 像素(= 原始图像的 75%) )。如果您想要 -hdpi 上的 2 英寸图片,则需要 480px(= 原始值的 150%)。

因此,您的分析是准确的。

-ldpi is ~120dpi, -mdpi is ~160dpi, -hdpi is ~240dpi.

So, a 320px wide image is 2" in -mdpi. If you want a 2" image on -ldpi, you want it to be 240px (=75% of original). If you want a 2" picture on -hdpi, you need 480px (=150% of original).

Hence, your analysis is accurate.

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