摘要: //传递对象Bundle bundle = new Bundle(); intent = new Intent(getApplicationContext(), YourActivity.class); bundle.putSerializable("youJavaBean", youJavaBean); intent.putExtras(bundle); startActivity(intent); //... 阅读全文
posted @ 2013-08-09 14:11 wanghongwin 阅读(288) 评论(0) 推荐(0)