Android 平板电脑 - 3.0 图标集/指南
Android的最新版本是3.0 Honeycomb。在此版本之前,我们为应用程序提供 3 种分辨率的图像,即 hdpi、mdpi 和 ldpi。
但是,3.0 Honeycomb 的图标分辨率是多少?或者相同的图标分辨率也适用于 Honeycomb 版本。 (因为平板电脑是大屏幕,即超高密度(320),xhdpi)
我已经浏览过SDK:http://developer.android.com/guide/practices/ui_guidelines/icon_design.html,http://developer.android.com/guide/practices/screens_support.html,但未能找到解决方案。
The latest version of Android is 3.0 Honeycomb. Before this version, we are providing 3 resolutions images for the application,i.e. hdpi, mdpi and ldpi.
But, what are the icon resolutions for the 3.0 Honeycomb? or the same icon resolutions works with Honeycomb version as well. (Because tablet are of large screen i.e. Extra high density (320), xhdpi)
I have already gone through SDK: http://developer.android.com/guide/practices/ui_guidelines/icon_design.html, http://developer.android.com/guide/practices/screens_support.html, but failed to find solutions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您拥有资源的 xhdpi 和 xlarge 限定符。
此外,了解与 mdpi 图标相对应的 hdpi 图标大小的通常规则是将尺寸乘以 1.5(因为分辨率大 1.5 倍:240dpi 与 160dpi)。对于平板电脑宽度 xhdpi 屏幕,您可以应用相同的计算:将 mdpi 图像的尺寸乘以 2(320dpi 与 160dpi)。
You have the xhdpi and xlarge qualifiers for the resources.
Also, the usual rule to know the size of an hdpi icon corresponding to a mdpi icon is to multiply by 1.5 the dimensions (because resolution is 1.5 times greater: 240dpi vs 160dpi). For tablets width xhdpi screens, you could apply the same calculation: multiply by 2 the dimensions of mdpi images (320dpi vs 160dpi).
查看 honeycomb 的来源,谷歌使用 115x115px 的 xhdpi 图像,所有边都有 8px 的外边框。
looking at the sources of honeycomb google uses 115x115px images for xhdpi with 8px outer boarder on all sides.