某些类型的S60手机支持重力感应来自动调整屏幕横竖屏,如3版FP2及5版部分机型;
有时希望禁掉自动重力感应,可以用如下代码实现:
TAppUiOrientation orientation;
if (IsFlipOpen())//是竖屏
{
orientation = EAppUiOrientationPortrait;
}
else
{
orientation = EAppUiOrientationLandscape;
}
SetOrientationL(orientation);
// 在这里的代码时不会自动响应横竖屏的,因为SetOrientationL会强制设置为横屏或竖屏状态。
SetOrientationL(EAppUiOrientationUnspecified);