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.
默认情况下,LWUIT 中的 TabbedPane 在索引 0 处显示第一个选项卡或选项卡,我怎样才能让它在索引 1 处显示第二个选项卡或选项卡。
请提供一段代码,我可以在其中显式调用特定选项卡并显示该特定选项卡而不是第一个选项卡。
在显示表单之前,请使用 tabPane.setSelectedIndex(int index) 方法,索引是您要显示的选项卡,并且不能超出范围(>= 选项卡计数)。这样做:
tabs tp = new Tabs(); tp.addTab("Tab 0", new Label("Tab 0")); tp.addTab("Tab 1", new Label("Tab 1")); tp.setSelectedIndex(1); ....