0

Android Manifest 有没有办法根据屏幕尺寸而有所不同?如果设备是平板电脑(即 xlarge 屏幕尺寸),我希望 android:configChanges 不包括“方向”

此外,我希望 android:screenOrientation 根据使用的设备而有所不同。有什么建议吗?

4

2 回答 2

1

我知道没有办法在 AndroidManifest.xml 中做一些复杂的事情,但是你可以通过Activity.setRequestedOrientation()方法以编程方式完成它。将其包装在实用程序类中并相应地查询您的环境很容易。一个警告虽然 - 如果调用此方法确实导致方向更改,您的 ActivityonCreate()将被第二次调用。如果您选择走这条路线,另一件事可能会派上用场,如果以下评估为真:

if((cfg.screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK) == Configuration.SCREENLAYOUT_SIZE_LARGE) {...}

然后你在平板设备上,或者至少你的布局是从 layout-large 加载的(如果你有的话)。综上所述,以下内容会将平板电脑锁定为横向模式,将手机锁定为纵向模式:

      if ((cfg.screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK) == Configuration.SCREENLAYOUT_SIZE_LARGE) {
         return true;
      } else if ((cfg.screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK) == Configuration.SCREENLAYOUT_SIZE_NORMAL) {
         return false;
      } else if ((cfg.screenLayout & Configuration.SCREENLAYOUT_SIZE_MASK) == Configuration.SCREENLAYOUT_SIZE_SMALL) {
         return false;
      } else {
         // Assume that all other ratings are tablets or possibly even larger devices; there is an
         // extra large spec however it is only available OS versions 3.x and above so there is no clean way to query for this state.
         return true;
      }
于 2012-08-21T16:47:38.607 回答
0

请看看这个............支持屏幕 android:resizeable=["true"| "假"] android:smallScreens=["真" | "假"] android:normalScreens=["真" | "假"] android:largeScreens=["真" | "假"] android:xlargeScreens=["真" | "假"] android:anyDensity=["真" | "false"] android:requiresSmallestWidthDp="integer" android:compatibleWidthLimitDp="integer" android:largestWidthLimitDp="integer ......它将处理你的屏幕

于 2012-09-01T10:37:08.940 回答