我正在使用 LWUIT 1.4。我想锁定横向的方向。所以,我用
Display.getInstance().isPortrait();
但它说找不到符号isPortrait()
?
谁能说出为什么 LWUIT1.4 中没有这种方法?
我正在使用 LWUIT 1.4。我想锁定横向的方向。所以,我用
Display.getInstance().isPortrait();
但它说找不到符号isPortrait()
?
谁能说出为什么 LWUIT1.4 中没有这种方法?
First...are you importing the correct Display
? Is important that you don't import the lcdui Display
.
Second...the correct method is lockOrientation(boolean portrait) . You must write Display.getInstace().lockOrientation(true);
. I think is true
value...try to do that.
好吧,我通过获取屏幕高度和宽度使其工作。
如果宽度小于高度,则丢弃它,如果高于允许它
在 Lwuit 以及 Blackberry UIApplication 及其工作中实现了相同的场景