Android 设计的基本分辨率是多少?

发布于 2024-12-06 15:44:25 字数 63 浏览 4 评论 0原文

我是 Android 界面设计新手。 (我已经浏览了开发人员指南中的多屏幕部分。)您设计屏幕的基本分辨率是多少?

I am new to designing interfaces for Android. (I have gone through the Multiple Screens section in the Developer Guide.) What base resolution are you designing your screens for?

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

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

发布评论

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

评论(3

少年亿悲伤 2024-12-13 15:44:25

这取决于您的应用程序适用于手机、平板电脑或两者。目前在设计手机应用的布局时,有以下三种最基本的分辨率:

- 320dip x 480dip(通常为 320px x 480px 手机)

- 320dip x 533dip(通常为 480px x 800px 手机)

- 320dip x 569dip(通常为 480px x 854px 手机)

因此,当您为手机应用程序设计布局时,请记住:

1.始终使用“dip”表示宽度、高度,使用“sp”表示文本大小

2。适合 320dip x 480dip 屏幕的布局将适合其他两个

3。 match_parent、wrap_content、gravity...都是强大的 Android XML 布局属性

4。仔细选择方向(横向、纵向),通常应用程序只需要一个方向

平板电脑应用程序也是如此,选择最正常的屏幕并为最小的屏幕创建布局,并在较大的屏幕上拉伸布局。

但对于平板电脑和手机,您应该使用 dimens.xml 来存储布局值。参考此处: http://developer.android.com/guide/ topic/resources/more-resources.html#Dimension

祝 Android 噩梦好运:)

That is based on your app is for phone, or tablet, or both. Currently when designing layout for phone's app, there are three most basic resolution:

- 320dip x 480dip (normally 320px x 480px phone)

- 320dip x 533dip (normally 480px x 800px phone)

- 320dip x 569dip (normally 480px x 854px phone)

So when you design layout for phone's app, please remember:

1. Always use dip for width, height and sp for text size

2. A layout fit 320dip x 480dip screen will fit the other two

3. match_parent, wrap_content, gravity... are powerful Android XML layout attributes

4. Choose the orientation (landscape, portrait) carefully, normally an app requires only one orientation

The same goes for tablet's app, choose the most normal screens and create layout for the smallest one, and stretch the layout on bigger one.

But for both tablet and phone, you should use dimens.xml to store layout values. Reference here: http://developer.android.com/guide/topics/resources/more-resources.html#Dimension

Good luck with Android nightmare :)

夏尔 2024-12-13 15:44:25

不要针对特定​​的屏幕分辨率进行设计!

专为各种小屏幕、中屏幕或大屏幕设备而设计。

以下是通用的,无论您的屏幕尺寸如何。
最好的布局是LinearLayout和RelativeLayout。
视图“dp”和字体“sp”的 Bes 指标

希望这有帮助!

Dont design for specific screen resolution!

Design for a range of devices either small screen, Medium screen or large screen.

Following are generic irrespective of your screen size.
Best layout is LinearLayout and RelativeLayout.
Bes metrics for Views 'dp' and for fonts 'sp'

Hope this helps!

清旖 2024-12-13 15:44:25

我建议 320x480 像素屏幕的基本分辨率,因为大多数设备都支持此分辨率。但是您需要提供 hdpi(高密度)、mdpi(中密度)、ldpi(低密度)、xhdpi(超高密度)的资源,特别是图像、按钮等。

I recommend base resolution for 320x480 pixel screen as this is supported by most number of devices. But you need to provide assets for hdpi (High Density), mdpi (medium density), ldpi (low density), xhdpi (xtra high density) specially images, buttons etc.

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