import net.rim.device.api.ui.UiApplication; import app.screen.TwitterScreen; public class StartApp extends UiApplication { public StartApp() { this.pushScreen(new TwitterScreen()); } public static void main(String[] args) { StartApp myApp = new StartApp(); myApp.enterEventDispatcher(); } }