-
LWUIT NUMBER OF TABS
I have created number of LWUIT Tabs,when i display those tabs on my form Screen,i am able to see only 4 tabs on my form screen,remaining tabs are displaying but those are hiding,How to display my form with tabs userfriendly?
tabs.addTab("Tab1", newsList);
tabs.addTab("Tab2", myNewsList);
tabs.addTab("Tab3", cinemaNewsList);
tabs.addTab("Tab4", gossipList);
tabs.addTab("Tab5", list);
tabs.addTab("Tab5", list);
form1.addComponent(BorderLayout.CENTER, tabs);
form1.show();
-
Re: LWUIT NUMBER OF TABS
Add form1.setLayout(new BorderLayout());
Now when the form1 is shown, and you press right arrow key or move to tab3... you will see more tabs, horizontal scroll should be active. Reduce the title Size.