是否有方法检测设备的自动旋转锁定是打开还是关闭?我的应用需要在运行时访问那个方法来锁定方向
将此添加到activity的Manifest文件中,用于activity的固定方向
android:screenOrientation="portrait"
<activity android:name=".Settings" android:label="@string/app_name" android:screenOrientation="portrait">
或者在Java代码中可以使用
setRequestedOrientation (ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
iPhone中有一个方法
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations.
return YES;
}
解锁方向。如果你想让它锁定,那么改变它的值(YES to NO),你想锁定方向