2

我有实现的自定义类,Parcelable并将其用作自定义数组列表。

当我使用putParcelableArrayListExtra400 行时它工作正常,但 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);
  } 
}
4

1 回答 1

2

我不相信你应该在这种情况下使用 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;
    }
}

或者,您可以实现某种缓存系统来管理您的数据。

于 2012-06-27T14:51:15.563 回答