像这样更改类:
public class Item implements Parcelable{ private String name; private String body; private String profileImage;public Item(){}public Item(Parcel in) { name = in.readString(); body = in.readString(); profileImage = in.readString(); } @Override public int describeContents() { return 0; } @Override public void writeToParcel(Parcel dest, int flags) { dest.writeString(name); dest.writeString(body); dest.writeString(profileImage); } @SuppressWarnings("unused") public static final Parcelable.Creator<Item> CREATOR = new Parcelable.Creator<Item>() { @Override public Item createFromParcel(Parcel in) { return new Item(in); } @Override public Item[] newArray(int size) { return new Item[size]; } };public Item(String body,String name,String profileImage){ this.body = body; this.name = name; this.profileImage = profileImage;}现在处于A类:
ArrayList<Item> mDATA = new ArrayList<>(); Intent i = new Intent(CLASS_A.this, CLASS_B.class); i.putParcelableArrayListExtra("ARRAY_DATA", mDATA); startActivity(i);现在在B类中,获取列表:
Intent intent = getIntent(); ArrayList<Item> mDATAFROMA = new ArrayList<>(); try { mDATAFROMA = intent.getParcelableArrayListExtra("ARRAY_DATA"); Log.d("ListSize",String.valueOf(mDATAFROMA.size())); } catch (Exception e) { e.printStackTrace(); }对于破裂通过:
Bundle args = new Bundle(); args.putParcelableArrayList("GET_LIST", (ArrayList<? extends Parcelable>) mDATA); fragmentDemo.setArguments(args);并在片段中获取:
ArrayList<Item> mDATAFROMA = new ArrayList<>();@Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Bundle pb=getArguments(); mDATAFROMA = pb.getParcelableArrayList("GET_LIST"); }


