vote up 2 vote down star

Dear friends,

I m new to android developement can you pls tell me how to navigate from one Activity screen to another Activity screen .In the first screen i m having one button if i click the button it has to move to another Activity screen.

regards, s.kumaran.

flag

50% accept rate

3 Answers

vote up 1 vote down check
OnClickListener onClickListener = new OnClickListener() {
    @Override
    public void onClick(View v) {
    	startActivity(new Intent(action));
    }
};

Button button = (Button) findViewById(id);
button.setOnClickListener(onClickListener);
link|flag
Oh god... code formatting! – fiXedd Aug 11 at 22:42
vote up 5 vote down
Button x.setOnClickListener(new View.OnClickListener() {
                public void onClick(View v) 
            	{
            		Intent i = new Intent(y.this, Activity.class);
            		startActivity(i);        			
            	}
        });

Here we've defined a listener for Button x. The OS will call this method and start the Activity referenced in Intent i.

Here's the official tutorial example: http://developer.android.com/guide/tutorials/notepad/notepad-ex2.html

link|flag
thanks friend it's really helpful to me.. – saravanakumaran Jul 10 at 6:19
vote up 3 vote down

The most trivial case (called from activity):

startActivity(new Intent(this, ActivityToLaunch.class));

More details here: http://developer.android.com/guide/topics/fundamentals.html

link|flag
thanks friend.. – saravanakumaran Jul 10 at 6:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.