方法一:
Intent intent=new Intent();
intent.setClass(this,next.class)
方法二:
Intent intent=new Intent();
intent.setAction(String action)
方法三:
Intent intent=new Intent(this,next.class);
方法四:
Intent intent=new Intent(String action);
原文:http://www.cnblogs.com/share-nc/p/6580972.html