gpt4 book ai didi

android - Parceler unwrap 提供错误的数据

转载 作者:太空宇宙 更新时间:2023-11-03 11:06:51 25 4
gpt4 key购买 nike

我正在使用 parceler实现 Parcelable 接口(interface)的库。

我有这样的模型

@Parcel(Parcel.Serialization.BEAN)
public class Ads {
private Long id;
private String title;
private String description;
private AdsType adsType;
private String phone;
private String email;
private String city;
private Long categoryId;
private ArrayList<Integer> creationDate;
//TODO remove transient
private transient ArrayList<Long> imageIds;
private transient Long price;


@SerializedName("adsCategory")
private AdvCategory advCategory;

public Ads() {}

public Ads(String title, String description, AdsType adsType, String
phone, String email, String city, Long categoryId, Long price, ArrayList<Long> imageIds) {
this.title = title;
this.description = description;
this.adsType = adsType;
this.phone = phone;
this.email = email;
this.city = city;
this.categoryId = categoryId;
this.price = price;
this.imageIds = imageIds;
}

@ParcelConstructor
public Ads(Long id, String title, String description, AdsType adsType,
String phone, String email, String city, ArrayList<Long>
imageIds, Long price, ArrayList<Integer> creationDate, AdvCategory advCategory) {
this.id = id;
this.title = title;
this.description = description;
this.adsType = adsType;
this.phone = phone;
this.email = email;
this.city = city;
this.imageIds = imageIds;
this.price = price;
this.creationDate = creationDate;
this.advCategory = advCategory;
}

public Long getId() {
return id;
}

public String getTitle() {
return title;
}

public String getDescription() {
return description;
}

public AdsType getAdsType() {
return adsType;
}

public String getPhone() {
return phone;
}

public String getEmail() {
return email;
}

public String getCity() {
return city;
}

public AdvCategory getAdvCategory() {
return advCategory;
}

public void setAdvCategory(AdvCategory advCategory) {
this.advCategory = advCategory;
}

public Long getCategoryId() {
return categoryId;
}

public ArrayList<Long> getImageIds() {
return imageIds;
}

public void setImageIds(ArrayList<Long> imageIds) {
this.imageIds = imageIds;
}

public int getPrice() {
//TODO replace with real price
return new Random().nextInt(100000);
}

public void setPrice(Long price) {
this.price = price;
}

public ArrayList<Integer> getCreationDate() {
return creationDate;
}

public void setCreationDate(ArrayList<Integer> creationDate) {
this.creationDate = creationDate;
}

@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;

Ads ads = (Ads) o;
return id.equals(ads.id);
}

@Override
public int hashCode() {
int result = id.hashCode();
result = 31 * result + title.hashCode();
result = 31 * result + description.hashCode();
result = 31 * result + adsType.hashCode();
result = 31 * result + (phone != null ? phone.hashCode() : 0);
result = 31 * result + (email != null ? email.hashCode() : 0);
result = 31 * result + (city != null ? city.hashCode() : 0);
result = 31 * result + advCategory.hashCode();
result = 31 * result + (categoryId != null ? categoryId.hashCode() : 0);
return result;
}

@Override
public String toString() {
return "Ads{" +
"id=" + id +
", title='" + title + '\'' +
", description='" + description + '\'' +
", adsType=" + adsType +
", phone='" + phone + '\'' +
", email='" + email + '\'' +
", city='" + city + '\'' +
", creationDate='" + creationDate.toString() +
'}';
}

public static class List extends ArrayList<Ads> {}
}

我正在包装我的模型并将其放入 Intent 中。

 Intent adsDetailsIntent = new Intent(this, AdsDetailsActivity.class);
Bundle details = new Bundle();
Ads advertisement = mAdsAdapter.getItem(position);
details.putParcelable(AdsDetailsActivity.ADS_DETAILS, Parcels.wrap(advertisement));
Ads ads = Parcels.unwrap(details.getParcelable(AdsDetailsActivity.ADS_DETAILS));
Log.d("ads", ads.toString());
adsDetailsIntent.putExtras(details);
startActivity(adsDetailsIntent);

在 Activity 中展开

mAdsDetails = Parcels.unwrap(
(Parcelable) this.getIntent().getParcelableExtra(ADS_DETAILS));

但有时字段“creationDate”在 Activity 中展开后有错误的值。

我尝试记录它,在从 Bundle 解包后 - 没问题,但在 Activity 中 - 它有奇怪的数据。

示例:

unwrap from bundle immediately after creating it

Ads{id=16, title='Mtitle', description='Mads', adsType=BUY, phone='+30890931231', email='+380932309046', city='Анабарский национальный улус', creationDate='[2015, 8, 8, 9, 27, 0, 350946000]}

unwrap from activity intent.getExtra()

Ads{id=null, title='null', description='null', adsType=null, phone='null', email='null', city='null', creationDate='[8, 8, 9, 27, 0, 350946000, null, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,

我不知道为什么,但它正在创建一个带有 creationDate 1 的数组大小并用零填充。

最佳答案

我注意到在你打开类(class)的时候

mAdsDetails = Parcels.unwrap(
(Parcelable) this.getIntent().getParcelableExtra(ADS_DETAILS));

你试过这样吗:

mAdsDetails = Parcels.unwrap(this.getIntent().getExtras().get(ADS_DETAILS));

关于android - Parceler unwrap 提供错误的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31893306/

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