源Activity
Intent intent = new Intent(queryList.this, itemActivity.class);
Bundle mBundle = new Bundle();
mBundle.putSerializable(KEY_STU, studentInfo);
intent.putExtras(mBundle);
startActivity(intent);目标Activity
StudentInfo studentInfo = (StudentInfo)getIntent().getSerializableExtra(KEY_STU);
1834

被折叠的 条评论
为什么被折叠?



