0
私はこのコードを私のUiApplicationクラスで試しましたが、私は不正なステートメントを受け取りました。Blackberry:アプリをポートレートモードに制限
Ui.getUiEngineInstance().setAcceptableDirections(Display.DIRECTION_PORTRAIT);
私のアプリのオリエンテーションを変更したくないです。ポートレートモードにしておきたい。
EDIT:それはどのように使用されている
:
public class HelloWorld extends UiApplication {
public static void main(String[] args){
Ui.getUiEngineInstance().setAcceptableDirections(Display.DIRECTION_PORTRAIT);
HelloWorld theapp = new HelloWorld();
theapp.enterEventDispatcher();
}
public HelloWorld(){
pushScreen(new FeaturedScreen());
}
}
あなたがUiApplication.pushScreenを呼び出す前に、これを使用しています() – Swati