BlackBerry Forums Support Community
              

Closed Thread
 
Thread Tools
Old 04-28-2010, 05:00 AM   #1
karthikus
New Member
 
Join Date: Apr 2010
Model: 9630
PIN: N/A
Carrier: airtel
Posts: 8
Default Push a new screen on a menu item select - Beginner help

Please Login to Remove!

Guys i am very new to the world of blackberry. I have one question now. I have created a small application where i will have a MAIN screen displaying some components. But when the user presses the menu and select a menu option i need to push another screen containing different set of components.My sample code is as follows


Code:
public class ContactMain extends UiApplication {

	public static void main(String[] args) {

		ContactMain contactMain = new ContactMain();
		contactMain.enterEventDispatcher();
	}

	public ContactMain() {
		pushScreen(new ContactMainScreen());
	}

}


--------------------------


final class ContactMainScreen extends MainScreen {

	//components declaration


	public ContactMainScreen() {

          //initialize components

	}

	protected void makeMenu(Menu menu, int instance) {
		menu.add(addContact);
		
	}

	private MenuItem addContact = new MenuItem("Add Contact", 110, 10)                      
        {
		public void run() {
			UiApplication.getUiApplication().(new ContactAddScreen());
		}
	};

}



----------------------------------------




final class ContactAddScreen extends MainScreen {


	//components declaration

	public ContactAddScreen() {

		    //initialize components

	}
}
--------------------------------------------------

But as soon as i press the menu i am getting a null pointer exception .

please help

Last edited by karthikus; 04-28-2010 at 05:08 AM..
Offline  
Old 04-28-2010, 08:20 AM   #2
Dougsg38p
BlackBerry Extraordinaire
 
Join Date: Mar 2008
Location: Austin, TX
Model: 9700
PIN: N/A
Carrier: T-Mobile
Posts: 1,644
Default

This:

UiApplication.getUiApplication().(new ContactAddScreen());

Should be:

UiApplication.getUiApplication().pushScreen(new ContactAddScreen());
Offline  
Closed Thread



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


OEM iPhone 11 PRO X/XR XS MAX 8/7 PLUS Fast Charging USB Cable 10 Feet & 6 Feet  picture

OEM iPhone 11 PRO X/XR XS MAX 8/7 PLUS Fast Charging USB Cable 10 Feet & 6 Feet

$2.99



iPhone 13 12 11 PRO MAX XR XS 8/7/6 Fast Charger USB Data Cable cord 10 feet/3M picture

iPhone 13 12 11 PRO MAX XR XS 8/7/6 Fast Charger USB Data Cable cord 10 feet/3M

$4.99



3M/10 feet Long Apple iPhone 13 12 11 Pro XS MAX XR X 8 Fast Charging Data Cable picture

3M/10 feet Long Apple iPhone 13 12 11 Pro XS MAX XR X 8 Fast Charging Data Cable

$3.50



10 Foot/3M iPhone 12/11 PRO MAX X/10 XR XS 8/7 FAST Charging USB LONG Cable cord picture

10 Foot/3M iPhone 12/11 PRO MAX X/10 XR XS 8/7 FAST Charging USB LONG Cable cord

$4.98



Welch Allyn Standard (bulb) MAC 2 Laryngoscope Blade #69042 New in OEM Box picture

Welch Allyn Standard (bulb) MAC 2 Laryngoscope Blade #69042 New in OEM Box

$19.77



18 x Sunmed Macintosh Standard (Lamp) Laryngoscope Blades, Size 2, OEM ~17016 picture

18 x Sunmed Macintosh Standard (Lamp) Laryngoscope Blades, Size 2, OEM ~17016

$129.99







Copyright © 2004-2016 BlackBerryForums.com.
The names RIM © and BlackBerry © are registered Trademarks of BlackBerry Inc.