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);
}
}
精彩评论