Intent it = new Intent(Activity.Main.this, Activity2.class);
Bundle bundle=new Bundle();
bundle.putString("name", "This is from MainActivity!"); // 把数据放进 bundle
it.putExtras(bundle); // 把数据放进 it
startActivity(it);
请问, 类 Bundle 和 Intent 有保存数据的结构体, 如何查看类的结构体呢?
------解决思路----------------------
Bundle和Intent,都是Android消息传递工具类。可以理解为key - value对.
至于你想看他们的继承结构关系,在Eclipse在,点击类名,按crtl + T 就可以了。
------解决思路----------------------
Bundle和Intent,里面都是有方法可以塞任意key和对应value的,就像你自己写的那样。
但他们核心作用,是运用了,消息传递机制,富含多种工具方法.