摘要: Intent intent = new Intent();Bundle bundle = new Bundle();ArrayList list = new ArrayList();//这个arraylist是可以直接在bundle里传的,所以我们可以借用一下它的功能list.add(list2);//这个list2才是你真正想要传过去的list。我们把它放在arraylis中,借助它传过去bundle.putParcelableArrayList("list", list);intent.putExtras(bundle);intent.setClass(XXX1Acti 阅读全文
posted @ 2011-12-24 11:05 志强思密达 阅读(3350) 评论(0) 推荐(0) 编辑