gpt4 book ai didi

android - 为什么 layout-large-v11 资源不适用于 Android 4.0 WVGA800 手机

转载 作者:搜寻专家 更新时间:2023-11-01 09:09:33 26 4
gpt4 key购买 nike

我正在使用 Google 的 iosched2011 应用程序进行测试,并使用 4.0.3 模拟器进行测试。

我想知道为什么 layout-large-v11 资源不适用于 Android 4.0 WVGA800 手机。 800*480好像是拿来当大屏了,android 4.0的API level比11大,所以应该在手机上申请那个文件夹的资源,结果不行。

最佳答案

检查您的应用程序 Android 如何设置配置:

在 onCreate Activity 中添加:

Configuration cfg = getApplication().getResources().getConfiguration();
int sz = cfg.screenLayout&cfg.SCREENLAYOUT_SIZE_MASK;
System.out.println("size: "+sz);

在 logcat 中你会看到数字,these 之一.

在 4.65' 屏幕的三星 Galaxy Nexus 上,我得到 2 = SCREENLAYOUT_SIZE_NORMAL。所以你可以期待同样的。

来自文档:

A set of four generalized sizes: small, normal, large, and xlarge

Note: Beginning with Android 3.2 (API level 13), these size groups are deprecated in favor of a new technique for managing screen sizes based on the available screen width. If you're developing for Android 3.2 and greater, see Declaring Tablet Layouts for Android 3.2 for more information.

关于android - 为什么 layout-large-v11 资源不适用于 Android 4.0 WVGA800 手机,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9271437/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com