确定多个 Android 屏幕尺寸/密度的图像尺寸
我一直在查看 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
-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.