gpt4 book ai didi

java - 无法读取另一个可分割对象中的可分割对象

转载 作者:行者123 更新时间:2023-12-01 11:46:58 26 4
gpt4 key购买 nike

我有一个处方类,其中包含药物医生药房字段。这些类中的每一个都实现了Parcelable,以便它们可以在Bundle内部传递。

对于药物、医生和药剂,我没有任何麻烦。然而,对于 Pharmacy 来说,事情变得有点棘手,因为它的字段也是实现 Parcelable 的对象。为了编写该对象,我使用了从 question 获得的以下代码:

/**
* Bundles all the fields of a pharmacy object to be passed in a `Bundle`.
* @param dest The parcel that will hold the information.
* @param flags Any necessary flags for the parcel.
*/
@Override
public void writeToParcel(Parcel dest, int flags) {
dest.writeParcelable(getMedication(), 0);
dest.writeParcelable(getDoctor(), 0);
dest.writeParcelable(getPharmacy(), 0);
dest.writeInt(getQuantity());
dest.writeSerializable(getStartDate());
dest.writeString(getNotes());
dest.writeString(getInstructions());
}

用于读取处方的Creator是这样写的:

public static final Creator<Prescription> CREATOR = new Creator<Prescription>() {
@Override
public Prescription createFromParcel(Parcel source) {
return new Prescription(
source.readLong(), // Id
(Medication) source.readParcelable(Medication.class.getClassLoader()), // Medication
(Doctor) source.readParcelable(Doctor.class.getClassLoader()), // Doctor
(Pharmacy) source.readParcelable(Pharmacy.class.getClassLoader()), // Pharmacy
source.readInt(), // Quantity
(Date) source.readSerializable(), // Start Date
source.readString(), // Notes
source.readString() // Instructions
);
}

@Override
public Prescription[] newArray(int size) {
return new Prescription[size];
}
};

当我尝试从 Bundle 中读取 Prescription 对象时,它返回一个 Prescription 对象,其中 Med/Doctor/Pharm 值为空,并且 Id 和 Quantity 值非常模糊。我不知道为什么。什么会导致这些值为空?

这里是实现:

// Inside the NewPrescriptionActivity
Intent data = new Intent();
data.putExtra(PrescriptionBinderActivity.ARG_PRESCRIPTION, prescription);

setResult(RESULT_OK, data);

// Inside the Activity that calls it.
if(requestCode == ADD_SCRIPT_REQUEST && resultCode == RESULT_OK){
Prescription p = data.getParcelableExtra(ARG_PRESCRIPTION);
mAdapter.addPrescription(p);
}else{
super.onActivityResult(requestCode, resultCode, data);
}

同样,我在其他类上使用了相同的方法,没有任何问题,但这不适用于 Prescription。我怀疑是因为它有 Parcelable 字段。

最佳答案

您没有将 id 字段添加到包裹中。

修改 writeToParcel() 方法的第一行并添加:

dest.writeLong(getId());

因此,整个阅读都是错误的。

关于java - 无法读取另一个可分割对象中的可分割对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29069246/

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