Here you can find the source of startNewActivity(Class
public static <T> void startNewActivity(Class<T> target, final Activity activity)
//package com.java2s; import android.app.Activity; import android.content.Intent; public class Main { public static <T> void startNewActivity(Class<T> target, final Activity activity) { Intent intent = new Intent(activity, target); activity.startActivity(intent);/*w w w. j a v a 2 s . c om*/ } }