赞
踩
一、生命周期
二、启动模式
可以在AndroidManifest.xml中进行设置
也可以意图里面进行设置
三、传输数据
A页面传输B页面
- Intent intent = new Intent(this, A2Activity.class);
-
- //通过 bundle来传送数据
- Bundle bundle = new Bundle();
- bundle.putString("name", "测试");
- bundle.putString("age", "18");
- intent.putExtras(bundle);
-
- startActivity(intent);
B页面收数据
- //接受数据
- Bundle bundle = getIntent().getExtras();
- String name = bundle.getString("name");
- String age = bundle.getString("age");
- Button b = findViewById(R.id.button_test);
- b.setText("name=" + name + " age="+age);
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。