Android如何将设置值传递给另一个活动?

时间:2016-02-03 10:13:51

标签: android

Android中我想将设定值传递给另一个activity ..我该怎么做?

        Set<Person> persons=getPersons();

        Intent intent = new Intent(getApplicationContext(), MainActivity2.class);
        intent.putExtra("persons", persons);  //Here I am getting error

        startActivity(intent);

但我在intent.putExtra()收到错误..为什么?我怎么能传递这些设定值?

1 个答案:

答案 0 :(得分:0)

您需要在类Person

中使用实现parcable

例如

public class Person implements Paracable{


}