Activity传递对象的方法

时间:2022-06-02 08:56:48
  1. //Serializeable传递对象的方法
  2. public void SerializeMethod(){
  3. Person mPerson = new Person();
  4. mPerson.setName("frankie");
  5. mPerson.setAge(25);
  6. Intent mIntent = new Intent(this,ObjectTranDemo1.class);
  7. Bundle mBundle = new Bundle();
  8. mBundle.putSerializable(SER_KEY,mPerson);
  9. mIntent.putExtras(mBundle);
  10. startActivity(mIntent);
  11. }
  12. //Pacelable传递对象方法
  13. public void PacelableMethod(){
  14. Book mBook = new Book();
  15. mBook.setBookName("Android Tutor");
  16. mBook.setAuthor("Frankie");
  17. mBook.setPublishTime(2010);
  18. Intent mIntent = new Intent(this,ObjectTranDemo2.class);
  19. Bundle mBundle = new Bundle();
  20. mBundle.putParcelable(PAR_KEY, mBook);
  21. mIntent.putExtras(mBundle);
  22. startActivity(mIntent);
  23. }
  24. //铵钮点击事件响应