为 Android 屏幕设计图像

发布于 2024-12-25 11:46:12 字数 642 浏览 0 评论 0原文

我正在为 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

enter image description here

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

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

发布评论

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

评论(2

享受孤独 2025-01-01 11:46:12

只需确保提及 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

私藏温柔 2025-01-01 11:46:12

您只需使用图像视图即可设置屏幕内容。

ImageView iv=ImageView(this);
iv.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));
......
 ......
......
setcontentView(iv);

这将与屏幕宽度和高度相匹配。

Simply you can use the Image view to set the screen content.

ImageView iv=ImageView(this);
iv.setLayoutParams(new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));
......
 ......
......
setcontentView(iv);

This will match for the screen width and height.

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