我有一个用于Prescription
的类,其中包含Medication
、Doctor
和Pharmacy
字段。这些类中的每一个都实现了Parcelable
,以便它们可以在Bundle
内传递。
对于药物,医生和药房,我没有任何麻烦。但是,对于药房来说,事情变得更加棘手,因为它的字段是也实现可包裹的对象。为了编写对象,我使用了从这个问题中获得的以下代码:
/**
* 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];
}
};
当我尝试从捆绑包中读取处方对象时,它会返回一个处方对象,其中包含 Med/Doctor/Pharm 的空值,并且非常模糊的 ID 和数量值。我不知道为什么。什么会导致这些值为空?
以下是实现:
// 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
.我怀疑是因为它有可包裹的字段。
您没有将 id 字段添加到包裹中。
修改 writeToParcel() 方法的第一行并添加:
dest.writeLong(getId());
正因为如此,整个阅读都是错误的。