我正在尝试在另一个活动中发送对象的数组列表。我已经检查了很多关于这个主题的文章,我正在使用parcelable,但我陷入了无法发送对象的地步。我尝试了很多东西。这就是我正在尝试的事情。
public class ParcalableForm implements Parcelable {
private ArrayList<form> from;
public ParcalableForm (ArrayList<form> choices) {
this.from = choices;
}
public ParcalableForm (Parcel parcel) {
this.from = parcel.readArrayList(null);
}
@Override
public int describeContents() {
return 0;
}
// Required method to write to Parcel
@Override
public void writeToParcel(Parcel dest, int flags) {
dest.writeList(from);
}
// Method to recreate a Question from a Parcel
public static Creator<ParcalableForm> CREATOR = new Creator<ParcalableForm>() {
@Override
public ParcalableForm createFromParcel(Parcel source) {
return new ParcalableForm(source);
}
@Override
public ParcalableForm[] newArray(int size) {
return new ParcalableForm[size];
}
};
}
这是实现Parcelable的parcelable类。我正在尝试将表单的Arraylist发送到另一个活动。
Intent i = new Intent(UserPage.this,Form.class);
Bundle extras = new Bundle();
System.out.println("I found a form :- ");
ParcalableForm p=new ParcalableForm(f1.attr);
i.putExtra("geopoints", p);
startActivity(i);
这是将对象发送到另一个活动的类。
Bundle extras = getIntent().getExtras();
ParcalableForm po = new ParcalableForm(extras.getParcelableArrayList("geopoints"));
这是我不知道如何获得对象/ Arraylist的部分。我尝试了很多方法,但没有运气。有什么想法吗?
答案 0 :(得分:0)
将数据传递给另一个活动
ArrayList<Animal> animals = new ArrayList<Animal>();
//fill your list with animals here
i.putExtra("animals", animals);
接收此数据
ArrayList<Animal> animals = (ArrayList<Animal>) getIntent()
.getSerializableExtra("animals");
答案 1 :(得分:0)
如果你想要的是传递ArrayList<Form>
,那么请使用getParcelableArrayListExtra
通常,请按照以下步骤操作:
Form
课程implement Parcelable 在发送意图的活动中:
// ArrayList<Form> myList - data to send;
intent.putParcelableArrayListExtra("geopoints", myList);
接收活动时:
ArrayList<Form> myReceivedList = getIntent().getParcelableArrayListExtra("geopoints");
不要忘记空/健全性检查。
希望有所帮助