mails2prince
Newbie
Hi All,
I am new 2 Android
how to navigate one screen to another?
plz help me on this.
I am new 2 Android
how to navigate one screen to another?
plz help me on this.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.


switcher.setOnClickListener(new OnClickListener() { //sets up a listener for the button
public void onClick(View v) {
// TODO Auto-generated method stub
Intent i = new Intent(ScreenSwitchActivity.this,secondactivity.class); //passes intent in order to start new activity
startActivity(i);
}
});