在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()
收到错误..为什么?我怎么能传递这些设定值?
答案 0 :(得分:0)
您需要在类Person
中使用实现parcable例如
public class Person implements Paracable{
}