开发者

blackberry screen orientation change

i want to set my application in Portrait mode as default . so how to implement it ? all screen of the application set default as Portrait m开发者_运维百科ode ..


Check this BlackBerry UI guide:
Specifying the orientation and direction of the screen


This set default portrait mode:

public void disableOrientationChange()
{

    int directions = Display.DIRECTION_NORTH;
    UiEngineInstance engineInstance = Ui.getUiEngineInstance();
    if (engineInstance != null)
    {
        engineInstance.setAcceptableDirections(directions);
    }
}
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜