0

我目前正在尝试将对象的 ArrayList 从一个活动传递到另一个活动。经过大量搜索,我发现您可以将东西作为包裹传递。这是我最终做的事情:

public class PartsList extends ArrayList<Part> implements Parcelable {

public PartsList(){

}

public PartsList(Parcel in){

}

@SuppressWarnings("unchecked")
public static final Parcelable.Creator CREATOR = new Parcelable.Creator() {
    public PartsList createFromParcel(Parcel in) {
        return new PartsList(in);
    }

    public Object[] newArray(int arg0) {
        return null;
    }
};

private void readFromParcel(Parcel in) {
    this.clear();

    // read the list size
    int size = in.readInt();

    // order of the in.readString is fundamental
    // it must be ordered as it is in the Part.java file

    for (int i = 0; i < size; i++) {
        Part p = new Part();
        p.setDesc(in.readString());
        p.setItemNmbr(in.readString());
        p.setPrice(new BigDecimal(in.readString()));
        this.add(p);
    }
}


@Override
public int describeContents() {
    // TODO Auto-generated method stub
    return 0;
}

@Override
public void writeToParcel(Parcel arg0, int arg1) {
    int size = this.size();

    arg0.writeInt(size);

    for (int i = 0; i < size; i++) {
        Part p = this.get(i);
        arg0.writeString(p.getDesc());
        arg0.writeString(p.getItemNmbr());
        arg0.writeString(p.getPrice().toString());
    }
}
    }

这是部分对象:

public class Part implements Parcelable{
private String desc;
private String itemNmbr;
private BigDecimal price;

public Part(){

}

public Part(String i, String d, BigDecimal p){
    this.desc = d;
    this.itemNmbr = i;
    this.price = p;
}

当然,它也有 getter/setter。

这是创建列表的位置:

for (String i : tempList){
        Matcher matcher = pattern.matcher(i);
        while (matcher.find()){

            // getting matches
            String desc = matcher.group(6);
            String item = matcher.group(9);
            BigDecimal price = new BigDecimal(matcher.group(12).toString());

            // adding the new part to the parts list
            parts.add(new Part(item, desc, price));
        }
    }

现在,这是收到它的地方:

    public void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  // get extras (list)
  Bundle b = getIntent().getExtras();
  parts = b.getParcelable("parts");
//    Part[] PARTS = (Part[]) parts.toArray();
  final Part[] PARTS = new Part[] {
    new Part("desc", "item id", new BigDecimal(0))    
  };
  final String[] COUNTRIES = new String[] {
        "Afghanistan", "Albania", "Algeria", "American Samoa", "Andorra"
      };
  setListAdapter(new ArrayAdapter<Part>(this, R.layout.list_item, PARTS));

  ListView lv = getListView();
  lv.setTextFilterEnabled(true);

  lv.setOnItemClickListener(new OnItemClickListener() {
    public void onItemClick(AdapterView<?> parent, View view,
        int position, long id) {
      // When clicked, show a toast with the TextView text
      Toast.makeText(getApplicationContext(), ((TextView) view).getText(),
          Toast.LENGTH_SHORT).show();
    }
  });
}

如果我不使用包裹,而只使用数组 - 它工作正常。我注释掉了我的测试列表,它运行良好,否则它崩溃了。

//          parts.add(new Part("desc", "item id", new BigDecimal(0)));
//          parts.add(new Part("desc2", "item id2", new BigDecimal(1)));
//          parts.add(new Part("desc3", "item id3", new BigDecimal(2)));
        // create a new bundle
        Bundle b = new Bundle();

        // put the list into a parcel
        b.putParcelable("parts", parts);
        Intent i = new Intent(SearchActivity.this, Results.class);

        // put the bundle into the intent
        i.putExtras(b);
        startActivity(i);

我在执行包裹时做错了什么吗?我想不通。如果有人能尽快帮助我——那就太棒了。

4

1 回答 1

2

在 Parcelable.Creator 的实现中,这看起来很粗略:

public Object[] newArray(int arg0) {
    return null;
}

我认为应该是:

public Object[] newArray(int arg0) {
    return new PartsList[arg0];
}

You also need to define your CREATOR object for Part if you're going to declare it to implement Parcelable (although I'm not sure why it needs to).

于 2011-06-07T15:42:40.220 回答