我有实现Parcelable
的自定义类,我将其用作自定义arraylist。
当我使用putParcelableArrayListExtra
和400行时,它可以正常工作,但1000行却没有。我有黑屏和应用程序锁定。有什么问题?
编辑: 我把它发送到了这里,我没有在另一个活动中使用它。
Intent intent = new Intent().setClass(getApplicationContext(), ArtActivity.class);
intent.putParcelableArrayListExtra ("mylist", list);
startActivityForResult(intent, SECONDARY_ACTIVITY_REQUEST_CODE);
我的阵列:
ArrayList<Piece> list = new ArrayList<Piece>();
这是我的班级:
public class Piece implements Parcelable {
private String id;
private String name;
private int type;
private String text;
private String mp3;
public Piece (String id,String name,int type)
{
this.id=id;
this.name=name;
this.type=type;
}
public Piece(Piece ele)
{
this.id=ele.id;
this.name=ele.name;
this.type=ele.type;
this.text=ele.text;
}
public Piece (Parcel in)
{
id = in.readString ();
name = in.readString ();
type = in.readInt();
text= in.readString();
mp3=in.readString();
}
public static final Parcelable.Creator<Piece> CREATOR
= new Parcelable.Creator<Piece>()
{
public Piece createFromParcel(Parcel in)
{
return new Piece(in);
}
public Piece[] newArray (int size)
{
return new Piece[size];
}
};
public void makeText(String text)
{
this.text=text;
}
public void makeMp3(String mp3)
{
this.mp3= mp3;
}
public String getMp3()
{
return this.mp3;
}
public String getId()
{
return id;
}
public String getName()
{
return name;
}
public int getType()
{
return type;
}
public String getText()
{
return text;
}
public int describeContents() {
// TODO Auto-generated method stub
return 0;
}
public void writeToParcel(Parcel dest, int flags) {
// TODO Auto-generated method stub
dest.writeString (id);
dest.writeString (name);
dest.writeInt(type);
dest.writeString (text);
dest.writeString (mp3);
}
}
答案 0 :(得分:1)
在这种情况下,我不相信你应该使用parcelable。我要么静态地访问数据(如果你只打算拥有一个持久的数据实例),要么使用缓存系统来保存数据。
这是一个公开可用的静态变量的示例:
public static List<Piece> list;
您可以从应用中的任何位置访问该类,并且可以看到该类。
然而,这样做非常混乱,被认为是一种不好的做法。或者,您可以创建一个对象来为您管理数据作为静态类或单例:
public class MyListManager {
private static List<Piece> mList;
public static List<Piece> getMyList() {
return mList;
}
public static void setList(List<Piece> list) {
mList = list;
}
}
或者,您可以实施某种缓存系统来管理数据。