android中不同密度的资源大小
我已经为 Android 中的 mdpi 手机制作了图像。 我想为 hdpi 和 ldpi 屏幕调整这些图像的大小。 尺寸的换算系数是多少?我听说我们将 mdpi 图像的高度和宽度乘以 1.5 将其转换为 hdpi 屏幕。 mdpi 到 hpdi 和 mdpi 到 ldpi 的准确转换系数是多少? 先感谢您。
i have made images for an mdpi phone in android.
i want to resize those images for hdpi and ldpi screens.
what is the conversion factor for the dimesions? i have heard that we multiply the height and width of the mdpi image by 1.5 to convert it to a hdpi screen.
what is the accurate conversion factor- for both mdpi to hpdi and mdpi to ldpi?
thank you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
来自 Android 开发人员,ldpi 为 0.75,mdpi 为 1.0,hdpi 为 1.5 。请注意,如果您以 dp(与密度无关的像素)为单位指定测量值,Android 将为您处理缩放。
您还可以在编码中通过检索电流密度并将它们相乘来缩放它。
这是一本关于密度的好读物。
From the Android developer, 0.75 for ldpi, 1.0 for mdpi and 1.5 for hdpi. Note that if you specified the measurements in dp ( density-independent pixels ), Android will take care of the scaling for you.
You could also scale it in the coding, by retrieving the current density and multiply them.
This is a good read regarding density.