How to navigate from one screen to another screen

The most trivial case (called from activity):

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

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

Leave a Comment