- // int first class
- Intent intent = new Intent();
- Bundle bundle = new Bundle();
- bundle.putString("Key_str","my string");
- bundle.putInt("Key_int",100000);
- intent.putExtras(bundle);
- intent.setClass(this,nextClass.class);
- startActivity(intent);
- // in secord class
- onCreate(){
- Bundle bundle = this.getIntent().getExtras();
- int x = bundle.getInt("key_int");
- String str = bundle.getString("Key_str");
- }