Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
单击按钮时,我创建了一个列表,该列表出现在下一个屏幕上现在我想将其设置为横向纵向如果分辨率中的高度大于其宽度,我该如何实现?
使用 Blackberry,您无法将设备方向设置为横向/纵向,除非用户以这种方式握住然后您在应用程序中进行设置。
您可以使用以下代码将设备设置为横向。
Ui.getUiEngineInstance().setAcceptableDirections(Display.DIRECTION_LANDSCAPE);
请记住,如果您以纵向模式握住设备,则此代码将不起作用。将设备设置为横向模式,然后运行此代码,然后应用程序将设置为横向模式。