0

我正在尝试使用适用于 Android 的 Parceler 库。

http://parceler.org/

但是,当我尝试在我的几个 Java 对象上使用它时出现以下错误,这是我得到的错误:

java.lang.RuntimeException:包裹:无法封送值

这是它似乎失败的课程:

//MyObject.java
@Parcel
public class MyObject {

@SerializedName("name")
String displayName;

@SerializedName("address")
String displayAddress;

@SerializedName("css")
MyTheme theme;

@SerializedName("myList")
ArrayList<String> myList;

MyDetails myDetails;

// empty constructor needed by the Parceler library
public MyObject(){

}

//Various Getters and Setters, some manipulate data

这是 MyTheme 类:

@Parcel
public class MyTheme {

    @SerializedName("backgroundColor")
    String backgroundColor;

    @SerializedName("textColor")
    String textColor;

    // empty constructor needed by the Parceler library
    public MyTheme(){

    }

    //Various getters and setters and some non getter/setter methods

这是 MyDetails 类:

@Parcel
public class MyDetails {
    @SerializedName("description")

    @SerializedName("addressTypes")
    ArrayList<String> addressTypes;

    // empty constructor needed by the Parceler library
    public MyDetails(){

    }

    //Various getter methods

最后,我以两种方式使用 MyObject 对象,一种是发送 MyObjects 的 ArrayList,另一种是发送一个,如下所示:

//ArrayList
ArrayList<MyObject> myObjects = ...
intent.putExtra(INTENT_EXTRA_OBJECTS, Parcels.wrap(myObjects));

//Retrieving
merchants = Parcels.unwrap(getIntent().getParcelableExtra(INTENT_EXTRA_OBJECTS));

//Single Object
MyObject myObject = ...;
args.putParcelable(ARG_OBJECT, Parcels.wrap(myObject));

//Retrieving
myObject = Parcels.unwrap(getArguments().getParcelable(ARG_OBJECT));

该错误非常模棱两可,我不确定如何调试它或找到解决方案,谁能指出我的代码中可能出现的问题?

4

0 回答 0