How to fix alignment for vertical and portrait screen in BlackBerry?

后端 未结 2 630
难免孤独
难免孤独 2021-01-06 22:04

I want to do application which will not change UI even if screen is changed to portrait or landscape direction. How to do that?

2条回答
  •  悲哀的现实
    2021-01-06 22:33

    you can use this code to set the orientation to portrait. After that even if the device is held in landscape, the orientation wont change.

    Ui.getUiEngineInstance().setAcceptableDirections(Display.DIRECTION_PORTRAIT);
    

提交回复
热议问题