1

有没有办法检测设备的自动旋转锁定是打开还是关闭?我的应用程序需要访问该方法以在运行时锁定方向。

4

2 回答 2

2

将此添加到活动的清单文件中,以获得活动所需的固定方向

android:screenOrientation="portrait"

喜欢

<activity android:name=".Settings" android:label="@string/app_name" android:screenOrientation="portrait">

或者在java代码中你可以使用

setRequestedOrientation (ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); 
于 2011-07-08T11:24:10.767 回答
-3

在 iPhone 中有一种方法

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
    // Return YES for supported orientations.
    return YES;
}

解锁方向。如果你想让它锁定然后在你想锁定方向的地方更改它的值(是到否)

于 2011-07-08T11:23:42.943 回答