我正在使用Android中的JavaMail api阅读电子邮件。任何人都可以告诉我如何通过Intent将Javax.mail.Message对象传递给另一个活动?这可能吗?
谢谢。
此致
答案 0 :(得分:0)
我认为您应该使您的对象Serializable然后使用
在intent中传递对象i.putExtra("class name", object); // to pass the object
super.getIntent..getSerializableExtra("class name") // retrieve the object in the second activity