我一直在尝试将StaggeredGridView库导入到 Eclipse 中。一切正常,除了StaggeredGridView.java中的错误。
在类的以下方法中
private SavedState(Parcel in) {
super(in);
firstId = in.readLong();
position = in.readInt();
in.createIntArray(topOffsets); //error here
in.readTypedList(mapping, ColMap.CREATOR);
}
日食显示错误
Parcel 类型中的方法 createIntArray() 不适用于参数 (int[])
任何建议如何摆脱这个错误?