我有一个复杂的类,我使用@Parcelable(我使用Parceler库https://github.com/johncarl81/parceler)
@Parcel
public class Event {
public int id;
public String title;
public String description;
public String resourceURL;
public List<Url> urls;
public Date modified;
public Date start;
public Date end;
public ImageInfo thumbnail;
public ItemList comics;
public ItemList stories;
public ItemList series;
public CharacterList characters;
public CreatorList creators;
public Item next;
public Item previous;
}
该类有许多其他对象,但它们主要是字符串。
我把它包装在我的主要活动中:
Intent intent = new Intent(getApplicationContext(), EventDescriptionActivity.class);
Bundle bundle = new Bundle();
bundle.putParcelable("event", Parcels.wrap(eventList.get(position)));
intent.putExtras(bundle);
startActivity(intent);
我有一个事件列表(eventList),我试图将列表中的一个对象发送到另一个活动。
我在其他活动中解开它,如:
Event event = Parcels.unwrap(this.getIntent().getExtras().get("event"));
在我的onCreate()
中但是我的参数下面有一条红线说:
"unwrap (android.os.Parcelable) in Parcels cannot be applied to (java.lang.Object)"
答案 0 :(得分:0)
所以我只是在错误行上按下了alt键,它提供了正确的类型转换...我应该更多地输入
答案 1 :(得分:0)
这最初是文档中的错误。与Parcels.unwrap
方法结合使用的额外方法是getParcelableExtra
方法:
Event event = Parcels.unwrap(getIntent().getParcelableExtra("event"));