Android如何处理Parcelable构造函数中的List <double []>和writeToParcel

时间:2019-03-27 11:24:47

标签: android parcelable

不知道表的可拆分类型。

我希望在活动之间共享。

private List<Double[]> variable= new ArrayList<>();

public Geometry(Parcel in) {
        in.readList(variable,Double[].class.getClassLoader());
    }

@Override
    public void writeToParcel(Parcel dest, int flags) {
        dest.writeString(type);
        dest.writeList(variable,flags);
    }

不兼容的标志。

0 个答案:

没有答案