代替
Intent i = new Intent(view.getContext(), StudentInfoActivity.class);
改成
Create static object of that activity
例如,活动actOne = null;
public static actOne a ;a = this;Intent i = new Intent(a, StudentInfoActivity.class);

代替
Intent i = new Intent(view.getContext(), StudentInfoActivity.class);
改成
Create static object of that activity
例如,活动actOne = null;
public static actOne a ;a = this;Intent i = new Intent(a, StudentInfoActivity.class);