为 Android 屏幕设计图像
我正在为 Android 应用程序设计启动图像。但当涉及到不同的屏幕尺寸和分辨率时,我就陷入了困境。
我知道图像尺寸应该有 3:4:6:8 的比例来满足每个屏幕 dpi 的要求,所以我设计了(在 Photoshop CS 5 中设计)一个如下的启动图像
低(ldpi) - 184px X 58px
中 (mdpi) - 246 像素 X 78 像素
高 (hdpi) - 369 像素 X 117 像素
x-high (xhdpi) - 492px X 156px
但问题是,存在小屏幕尺寸,例如 240 x 320 的高分辨率或中分辨率(例如:索尼爱立信 Xperia Mini Pro),并且当应用程序选择合适的图像时对于此分辨率,图像对于屏幕尺寸而言太大。
就我而言,将为 Xperia Mini 选择 hdpi 图像,其尺寸为 369px X 117px,但实际屏幕尺寸为 240px X 320px
这是我遗漏了什么吗?或者我应该在设计时做一些不同的事情。 Android 文档对我来说是胡言乱语。
帮助 !!!!!
先感谢您!
注意:9 补丁示例
I'm designing splash images for an Android app. But when it comes to different screen sizes and resolutions, i'm stuck at the root.
I have understood that there should be a 3:4:6:8 ratio in image sizes to fit each screen dpi requirements, so I have designed (designed in Photoshop CS 5) a splash image as below
low (ldpi) - 184px X 58px
medium (mdpi) - 246px X 78px
high (hdpi) - 369px X 117px
x-high (xhdpi) - 492px X 156px
But the issue is, there are small screen sizes such as 240 x 320 with high or medium resolutions (example: Sony Ericsson Xperia Mini Pro) and when the app selects the image appropriate for this resolution, the image is too large for the screen size.
In my case, the hdpi image will be selected for the Xperia Mini and its 369px X 117px but the actual screen size is 240px X 320px
Is there something i'm missing in this? or should I do something differently when designing. Android documentation is gibberish to me.
Help !!!!!
Thank you in advance!
Note: 9-Patch Samples
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需确保提及 fill_parent 作为高度和宽度属性即可。那就好了。
注册图像设计的最佳方法是创建一个 9 补丁图像。如果您为不同的设备集创建不同的图像。这始终是一个负担。检查这个和这个
Just make sure you mention fill_parent for height and width attribute. That would be just fine.
Reg the image designing the best way is to create a 9 patch image. If you create different image for diff sets of device. It is a over head always. Check this and this
您只需使用图像视图即可设置屏幕内容。
这将与屏幕宽度和高度相匹配。
Simply you can use the Image view to set the screen content.
This will match for the screen width and height.