List<ValueActivity> list = new ArrayList<ValueActivity>(); list = setList(); Intent intent = new Intent(NOTIFICATION); Bundle bundle = new Bundle(); bundle.put ????("list",list); intent.putExtra("bundle",bundle); sendBroadcast(intent);
如何编写第5行以及如何在目标意图中使用getExtra
要将列表放入Bundle,请使用:
bundle.putParcelableArrayList("list",list);
要从目标活动中的Bundle中获取列表,请使用:
List<ValueActivity> = listbundle.getParcelableArrayList("list");