问题描述
解决方案
解决方案二:
bundle有没有试试啊,或者回调呢?
解决方案三:
不要用Bundle,直接用Intent
解决方案四:
你是用相同的key把值给覆盖了吧
解决方案五:
Intent intent = new Intent();
Bundle bundle = new Bundle();
bundle.putString("key1","vlau1"); //自定义key , value 你要传的值 . 类型很多 putInt() , .....
bundle.putString("key2","vlau2");
bundle.putString("key3","vlaua3");
...
intent.putExtras(bundle);
startActivity(intent);
==============================
另外一个activity:
Intent intent1 = getIntent();
Bundle bundle1 = intent1.getExtras();
String value1 = bundle1.getString("key1");
String value2 = bundle1.getString("key2");
String value3 = bundle1.getString("key3");
...
时间: 2024-12-05 05:52:36