パーセルとの間でオブジェクトの配列を読み書きする次のクラスがあります。
class ClassABC extends Parcelable {
MyClass[] mObjList;
private void readFromParcel(Parcel in) {
mObjList = (MyClass[]) in.readParcelableArray(
com.myApp.MyClass.class.getClassLoader()));
}
public void writeToParcel(Parcel out, int arg1) {
out.writeParcelableArray(mObjList, 0);
}
private ClassABC(Parcel in) {
readFromParcel(in);
}
public int describeContents() {
return 0;
}
public static final Parcelable.Creator<ClassABC> CREATOR =
new Parcelable.Creator<ClassABC>() {
public ClassABC createFromParcel(Parcel in) {
return new ClassABC(in);
}
public ClassABC[] newArray(int size) {
return new ClassABC[size];
}
};
}
上記のコードではClassCastException
、読み取り時に次のようになりますreadParcelableArray
。
エラー/AndroidRuntime(5880): 原因: java.lang.ClassCastException: [Landroid.os.Parcelable;
上記のコードで何が間違っていますか? オブジェクト配列を書き込んでいる間、最初に配列をに変換する必要がありArrayList
ますか?
アップデート:
オブジェクト配列を に変換しArrayList
てパーセルに追加しても問題ありませんか? たとえば、次のように記述します。
ArrayList<MyClass> tmpArrya = new ArrayList<MyClass>(mObjList.length);
for (int loopIndex=0;loopIndex != mObjList.length;loopIndex++) {
tmpArrya.add(mObjList[loopIndex]);
}
out.writeArray(tmpArrya.toArray());
読むとき:
final ArrayList<MyClass> tmpList =
in.readArrayList(com.myApp.MyClass.class.getClassLoader());
mObjList= new MyClass[tmpList.size()];
for (int loopIndex=0;loopIndex != tmpList.size();loopIndex++) {
mObjList[loopIndex] = tmpList.get(loopIndex);
}
しかし今、私はNullPointerException
. 上記のアプローチは正しいですか?なぜNPEを投げているのですか?