不知道表的可拆分类型。
我希望在活动之间共享。
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);
}
不兼容的标志。