如何在黑莓 OS 4.5 中锁定方向
在 5.0 以上的黑莓操作系统中,可以使用以下方法
ScreenUtils.disableOrientationChange();
// enters the event processing loop thread if required
if (!app.isHandlingEvents())
{
app.enterEventDispatcher();
}
和
Ui.getUiEngineInstance().setAcceptableDirections(Display.DIRECTION_PORTRAIT);
但我正在开发 BB OS 4.5,所以这怎么可能。