Saturday, February 9, 2013

Android: Navigate from one screen to another





From your current activity to want to switch to a new activity. You can do so as following



Intent newIntent=new Intent(this,SecondActivity.class);
startActivity(newIntent);



You can find the sample code if it is still not clear. LINK



No comments:

Post a Comment