如何在Android Parcelable中使用类字段数组

时间:2013-02-13 22:01:07

标签: android exception nullpointerexception parcelable

我基于snippet创建了自己的Parcelable类,通过Intent发送自定义数据。使用它,Android(Min.API 10)给了我一个例外,下面这段代码有什么问题?我把它分解到最低限度。这是:

public class MyParcelable implements Parcelable {
private float[] data = null;

public MyParcelable(float[] data) {
    this.data = data;
}

public MyParcelable(Parcel in) {
    /* After this line the exception is thrown */
    in.readFloatArray(data);
}

public static final Creator<MyParcelable> CREATOR = new Creator<MyParcelable>() {
    public MyParcelable createFromParcel(Parcel in) {
        return new MyParcelable(in);
    }

    public MyParcelable[] newArray(int size) {
        return new MyParcelable[size];
    }
};

public int describeContents() {
    return this.hashCode();
}

public void writeToParcel(Parcel out, int flags) {
    out.writeFloatArray(data);
}

public float[] getData() {
    return data;
}
}

1 个答案:

答案 0 :(得分:0)

在寻找解决方案很长一段时间后,我偶然发现了post,其中LionKing给出了一个工作提示。

Parcelable类现在看起来像这样:

public class MyParcelable implements Parcelable {
private float[] data = null;

public MyParcelable(float[] data) {
    this.data = data;
}

public MyParcelable(Parcel in) {
    /* The exception is gone */
    data = in.createFloatArray();
}

public static final Creator<MyParcelable> CREATOR = new Creator<MyParcelable>() {
    public MyParcelable createFromParcel(Parcel in) {
        return new MyParcelable(in);
    }

    public MyParcelable[] newArray(int size) {
        return new MyParcelable[size];
    }
};

public int describeContents() {
    return this.hashCode();
}

public void writeToParcel(Parcel out, int flags) {
    out.writeFloatArray(data);
}

public float[] getData() {
    return data;
}
}

此解决方案也适用于其他基本类型数组。