J'ai la classe suivante qui lit et écrit un tableau d'objets depuis/vers un paquet :
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];
}
};
}
Dans le code ci-dessus, j'obtiens un ClassCastException
en lisant readParcelableArray
:
ERROR/AndroidRuntime(5880) : Causé par : java.lang.ClassCastException : [Landroid.os.Parcelable ;
Quel est le problème dans le code ci-dessus ? Lors de l'écriture du tableau d'objets, dois-je d'abord convertir le tableau en un tableau de type ArrayList
?
UPDATE :
Est-il possible de convertir un tableau d'objets en un tableau d'objets ? ArrayList
et l'ajouter au colis ? Par exemple, en écrivant :
ArrayList<MyClass> tmpArrya = new ArrayList<MyClass>(mObjList.length);
for (int loopIndex=0;loopIndex != mObjList.length;loopIndex++) {
tmpArrya.add(mObjList[loopIndex]);
}
out.writeArray(tmpArrya.toArray());
En lisant :
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);
}
Mais maintenant je reçois un NullPointerException
. L'approche ci-dessus est-elle correcte ? Pourquoi un NPE est-il lancé ?