Question

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 mode ..

Was it helpful?

Solution

OTHER TIPS

This set default portrait mode:

public void disableOrientationChange()
{

    int directions = Display.DIRECTION_NORTH;
    UiEngineInstance engineInstance = Ui.getUiEngineInstance();
    if (engineInstance != null)
    {
        engineInstance.setAcceptableDirections(directions);
    }
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top