Java tutorial
//package com.java2s; import android.content.Context; import android.content.Intent; import android.os.Bundle; public class Main { public static void goActivity(Context context, Class<?> cls, Bundle bundle) { Intent intent = new Intent(context, cls); if (null != bundle) { intent.putExtras(bundle); } context.startActivity(intent); } }