0

我正在使用 LWUIT 1.4。我想锁定横向的方向。所以,我用

Display.getInstance().isPortrait();

但它说找不到符号isPortrait()

谁能说出为什么 LWUIT1.4 中没有这种方法?

4

2 回答 2

2

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 truevalue...try to do that.

于 2012-04-19T16:09:11.270 回答
0

好吧,我通过获取屏幕高度和宽度使其工作。

如果宽度小于高度,则丢弃它,如果高于允许它

在 Lwuit 以及 Blackberry UIApplication 及其工作中实现了相同的场景

于 2012-04-20T03:53:29.987 回答