Java tutorial
//package com.java2s; import android.app.Activity; import android.content.Intent; public class Main { /** * @param fromActivity the activity from where we want to switch * @param toActivity the class name of the activity where we are switching to */ public static void switchActivity(Activity fromActivity, Class toActivity) { Intent intent = new Intent(fromActivity, toActivity); fromActivity.startActivity(intent); } }