为了账号安全,请及时绑定邮箱和手机立即绑定

用Bundle和直接用Intent.putExtra传递有什么不同?

用Bundle和直接用Intent.putExtra传递有什么不同?

喵喔喔 2018-10-14 14:10:05
用Bundle和直接用Intent.putExtra传递有什么不同
查看完整描述

1 回答

?
梵蒂冈之花

TA贡献1900条经验 获得超5个赞

[html] view plaincopy
Intent intent = new Intent();
intent.putExtra("test_value", "TEST_V");
[html] view plaincopy
Bundle bundle = new Bundle();
bundle.putString("test_value", "TEST_V");
intent.putExtras(bundle);
[html] view plaincopy

[html] view plaincopy
Bundle bundle = this.getIntent().getExtras();

举个例子 我现在要从A界面 跳转到B界面或者C界面
这样的话 我就需要写2个Intent 如果你还要涉及的传值的话 你的Intent就要写两遍添加值的方法 那么 如果我用1个Bundle 直接把值先存里边 然后再存到Intent中 不就更简洁吗?

另外一个例子 如果我现在有 Activity A ,B ,C;
现在我要把值通过A经过B传给C
你怎么传 如果用Intent的话 A-B先写一遍 再在B中都取出来 然后在把值塞到Intent中 再跳到C 累吗?
如果我在A中用了 Bundle 的话 我把Bundle传给B 在B中再转传到C C就可以直接去了
这样的话 还有一个好处 就是在B中 还可以给Bundle对象添加新的 key - value 同样可以在C中取出来



查看完整回答
反对 回复 2018-11-13
  • 1 回答
  • 0 关注
  • 1251 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信