Bundle,是Android开发中的一个类,用于Activity之间传输数据用。
Intent it = new Intent(A.this,B.class);
Bundle bundle = new Bundle();
bundle.putString("name","张三");
it.putExtrats(bundle);
startActivity(it);
取值:
Bundle bundle = this.getIntent().getExtras();
String name = bundle.getString("name");