哪些 Android 手机具有大屏幕尺寸

发布于 2024-10-14 19:58:41 字数 212 浏览 1 评论 0原文

我正在尝试找出哪些手机在 Android 开发方面具有大屏幕尺寸。仔细阅读文档,这是一个非常令人困惑的情况,因为“大”类别还取决于手机屏幕中像素的密度。
据我了解,EVO 和 Droid X(具有大屏幕)似乎都被归类为高密度普通屏幕。

哪些手机既支持MDPI/HDPI,又支持大屏?

我的最终目标是仅支持 HVGA 和 WVGA 屏幕,但我需要确保我不会削减大部分市场。

I am trying to figure out which phones have a Large screen size in terms of Android development. Going through the documentation it is a very confusing situation as the Large category also depends on the density of the pixels in the phones screen.
From what I've read it looks like both the EVO and Droid X (who have big screens) are classified as Normal screens with High Density.

Which phones are MDPI/HDPI but also Large Screens?

My endgame here is to support only HVGA and WVGA screens but I need to make sure I'm not cutting a large portion of the market out.

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

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

发布评论

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

评论(3

只为守护你 2024-10-21 19:58:41

AFAIK 平板电脑,例如三星的 Galaxy,尺寸很大。事实上,您需要为这些类型的设备创建单独的资源(您知道,values-largelayout-largeraw-large > 等)

AFAIK tablets, like the Galaxy of Samsung, have large sizes. In fact, you will want to create separated resources for those kind of devices (you know, values-large, layout-large, raw-large, etc.)

夏雨凉 2024-10-21 19:58:41

您可以使用此网站搜索具有各种屏幕尺寸的 Android 手机(实际上是任何手机):

http:// /pdadb.net/index.php?m=pdachooser

您还可以在此处查看具有一定屏幕密度的市场百分比:

http://developer.android.com/resources/dashboard/screens.html

You can use this site to search for Android phones (any phone actually) with various screen sizes:

http://pdadb.net/index.php?m=pdachooser

You can also check here to see what percent of the market has a certain screen density:

http://developer.android.com/resources/dashboard/screens.html

不顾 2024-10-21 19:58:41

了解手机是大屏幕、小屏幕还是中屏幕设备的最佳方法是创建一个新的 Android 项目。将您的绘图、布局等放入相应的文件夹中。例如:将您的布局放入布局、布局-hdpi 等文件夹中,layout-large-hdpi,layout-large-tvdpi(for nexus7),layout-xlarge-hdpi 等同样将您的drawables放置在相应的drawables文件夹中。在布局或可绘制对象中使用标识符,只是为了知道在运行应用程序的设备上呈现哪些布局和可绘制对象。

Best way to know whether the phones are large screen small screen or medium screen devices is to create a new android project.Place your drawables , layouts etc in the respective folders.For eg: place your layouts in the folders like layout, layout-hdpi,layout-large-hdpi,layout-large-tvdpi(for nexus7),layout-xlarge-hdpi etc.similarly have your drawables placed in the corresponding drawables folder. with an identifier in the layout or in the drawable just to know which layout and drawables are rendered on the device on which you are running your app.

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