Android как работать со списком <Double []> в конструкторе Parcelable и writeToParcel - PullRequest
0 голосов
/ 27 марта 2019

Не знаю, как Parcelable Type of Table.

Я хочу, чтобы это делилось между действиями.

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);
    }

несовместимые флаги.

...