我有一个 IntentService 正在进行网络调用并接收一些 JSON 数据。我将此响应数据打包在实现 parcelable 的自定义对象中。如果我将此 parcelable 对象作为额外内容添加到 Intent 中,然后使用该 Intent 启动 Activity,一切似乎都按预期工作,即我可以从新创建的 Activity 中的 Intent 中检索 Parcelable。但是,如果我从 IntentService 的 onHandleIntent() 方法中创建意图,然后使用 sendBroadcast(),则广播接收器的 onReceive() 方法永远不会触发。但是,如果我不将 parcelable 添加到意图中,onReceive() 方法会按预期触发。以下是一些相关的代码片段:
可包裹对象:
public class JsonResponse implements Parcelable {
private int responseCode;
private String responseMessage;
private String errorMessage;
public JsonResponse() {
}
/*
/ Property Methods
*/
public void setResponseCode(int code) {
this.responseCode = code;
}
public void setResponseMessage(String msg) {
this.responseMessage = msg;
}
public void setErrorMessage(String msg) {
this.errorMessage = msg;
}
/*
/ Parcelable Methods
*/
public static final Creator<JsonResponse> CREATOR = new Creator<JsonResponse>() {
@Override
public JsonResponse createFromParcel(Parcel parcel) {
return new JsonResponse(parcel);
}
@Override
public JsonResponse[] newArray(int i) {
return new JsonResponse[i];
}
};
private JsonResponse(Parcel parcel) {
responseCode = parcel.readInt();
responseMessage = parcel.readString();
errorMessage = parcel.readString();
}
@Override
public void writeToParcel(Parcel parcel, int i) {
parcel.writeInt(responseCode);
parcel.writeString(responseMessage);
parcel.writeString(errorMessage);
}
@Override
public int describeContents() {
return 0;
}
}
IntentService 的 onHandle():
protected void onHandleIntent(Intent intent) {
service = new LoginService();
service.login("whoever", "whatever");
JsonResponse response = new JsonResponse();
response.setResponseCode(service.responseCode);
response.setResponseMessage(service.responseMessage);
response.setErrorMessage(service.errorMessage);
Intent i = new Intent();
i.putExtra("jsonResponse", response);
i.setAction(ResultsReceiver.ACTION);
i.addCategory(Intent.CATEGORY_DEFAULT);
sendBroadcast(i);
}
有任何想法吗?任何见解将不胜感激。