/* new一个Intent对象,并指定class */ |
Intent intent = new Intent(); |
intent.setClass(Demo1. this , Demo2. class ); |
/* new一个Bundle对象,并将要传递的数据传入 */ |
Bundle bundle = new Bundle(); |
bundle.putDouble( "height" , height); |
bundle.putString( "sex" , sex); |
/* 将Bundle对象assign给Intent */ |
intent.putExtras(bundle); |
startActivity(intent); |