Tab bar in blackberry without ToolBarManager
This is a sample code that how to create Tabs in blackberry. I had total 3 screens after statUp(which extends UiApplication) class LoadingScreen.java public class LoadingScreen extends MainScreen { int current_index=0; BottomPanel bottomPanel; public LoadingScreen(int current_index) { this.current_index=current_index; bottomPanel=new BottomPanel(current_index); } public void createGUI() { setTitle(“Loading Screen”); VerticalFieldManager vertical=new VerticalFieldManager(USE_ALL_WIDTH) { protected void sublayout(int maxWidth, … Read more