获得锁定方向

时间:2011-07-08 11:20:35

标签: android android-layout screen-orientation android-screen

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

2 个答案:

答案 0 :(得分:2)

将此添加到您的活动的清单文件中,以获得您想要的活动

的固定方向
android:screenOrientation="portrait"

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

或在java代码中可以使用

setRequestedOrientation (ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); 

答案 1 :(得分:-3)

在iPhone中有一种方法

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

解锁方向。如果你想让它锁定,那么改变它的值(YES为NO),你想要锁定方向