gpt4 book ai didi

java - 当我将它作为一个包发送时试图打开一个对象

转载 作者:太空狗 更新时间:2023-10-29 14:59:10 24 4
gpt4 key购买 nike

我有一个复杂的类,我使用了 @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;
}

该类还有许多其他对象,但它们主要是字符串。

我将它包装在我的主要 Activity 中,例如:

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),我正在尝试将列表中的一个对象发送到另一个 Activity 。

我在我的其他 Activity 中打开它,例如:

Event event = Parcels.unwrap(this.getIntent().getExtras().get("event"));

在我的 onCreate() 中

但是我的参数下面有一条红线说:

"unwrap (android.os.Parcelable) in Parcels cannot be applied to (java.lang.Object)"

最佳答案

所以我只是在错误行上按了 alt enter,它提供了正确的类型转换...我应该更频繁地 alt enter

关于java - 当我将它作为一个包发送时试图打开一个对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28662354/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com