Intent 传输对象
摘要:
Bundle bundle = new Bundle();intent = new Intent(getApplicationContext(), YourActivity.class); bundle.putSerializable("youJavaBean", youJavaBean); intent.putExtras(bundle); startActivity(intent);------------------------------Intent intent = getIntent(); Bundle bundle=intent.getExtras(); yo 阅读全文
posted @ 2011-02-28 22:51 陆晓峰 阅读(1050) 评论(0) 推荐(0) 编辑