1.传递普通类型
2.传递对象
发送端 Today_record today_record 前提是这个对象要实现序列化
Intent intent = new Intent(getBaseContext(), RecordShowActivity.class);
intent.putExtra(“recorditem”, today_record);
接受端
mrecord = (PathRecord)getIntent().getParcelableExtra(“recorditem”);