@Override
public void onClick(View v) {
carregaDados();
Intent myIntent = new Intent(ctx, Activity_VendaProduto.class);
if (!logradouro.getText().toString().equals("")) {
cliente.setEndereco(endereco); //nothing important here, just another object
gerarVenda(); //who populates my "venda object with data"
myIntent.putExtra("venda", venda);
}
startActivity(myIntent);
}
});
在这里,这个“文达”对象的writeToParcel:
@Override
public void writeToParcel(Parcel dest, int flags) {
dest.writeString(numeroContrato);
dest.writeString(numeroProposta);
dest.writeString(observacaoComplementar);
dest.writeString(tipoVenda);
dest.writeString(fidelidade);
dest.writeString(hash);
dest.writeString(oferta);
dest.writeParcelable(visita, flags);
dest.writeParcelable(midia, flags);
dest.writeParcelable(tipoContratoVenda, flags);
dest.writeParcelable(periodoInstalacao, flags);
dest.writeParcelable(produtoAgrupamento, flags);
dest.writeParcelable(formaPagamento, flags);
dest.writeParcelable(vendaInternet, flags);
}
在这个类上,我有一个构造函数调用方法:“readFromParcel”这里是构造函数:
private Venda(Parcel source) {
readFromParcel(source);
}
这是readFromParcel方法(我已经多次检查了写入和此方法的项目顺序)
private void readFromParcel(Parcel in) {
numeroContrato = in.readString();
numeroProposta = in.readString();
observacaoComplementar = in.readString();
tipoVenda = in.readString();
fidelidade = in.readString();
hash = in.readString();
oferta = in.readString();
visita = in.readParcelable(Visita.class.getClassLoader());
midia = in.readParcelable(Midia.class.getClassLoader());
tipoContratoVenda = in.readParcelable(TipoContratoVenda.class.getClassLoader());
periodoInstalacao = in.readParcelable(Periodo.class.getClassLoader());
produtoAgrupamento = in.readParcelable(ProdutoAgrupamento.class.getClassLoader());
formaPagamento = in.readParcelable(FormaPagamento.class.getClassLoader());
vendaInternet = in.readParcelable(VendaInternet.class.getClassLoader());
}
所有这些readParcelable方法都属于一个自定义对象,这些对象类也实现了Parcelable及其所有方法。
此处LogCat错误发生在此行:
periodoInstalacao = in.readParcelable(Periodo.class.getClassLoader());
produtoAgrupamento = in.readParcelable(ProdutoAgrupamento.class.getClassLoader());
我试过评论,替换,但错误仍然存在于相邻的对象上。
logcat的:
12:20:22.493 526 projetoTeste ERROR AndroidRuntime FATAL EXCEPTION: main
12:20:22.493 526 projetoTeste ERROR AndroidRuntime java.lang.RuntimeException: Unable to start activity ComponentInfo{projetoTeste/projetoTeste.controle.Activity_VendaProduto}: java.lang.ClassCastException: projetoTeste.dto.Periodo cannot be cast to projetoTeste.dto.ProdutoAgrupamento
12:20:22.493 526 projetoTeste ERROR AndroidRuntime at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1956)
12:20:22.493 526 projetoTeste ERROR AndroidRuntime at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1981)
12:20:22.493 526 projetoTeste ERROR AndroidRuntime at android.app.ActivityThread.access$600(ActivityThread.java:123)
12:20:22.493 526 projetoTeste ERROR AndroidRuntime at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1147)
12:20:22.493 526 projetoTeste ERROR AndroidRuntime at android.os.Handler.dispatchMessage(Handler.java:99)
12:20:22.493 526 projetoTeste ERROR AndroidRuntime at android.os.Looper.loop(Looper.java:137)
12:20:22.493 526 projetoTeste ERROR AndroidRuntime at android.app.ActivityThread.main(ActivityThread.java:4424)
12:20:22.493 526 projetoTeste ERROR AndroidRuntime at java.lang.reflect.Method.invokeNative(Native Method)
12:20:22.493 526 projetoTeste ERROR AndroidRuntime at java.lang.reflect.Method.invoke(Method.java:511)
12:20:22.493 526 projetoTeste ERROR AndroidRuntime at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
12:20:22.493 526 projetoTeste ERROR AndroidRuntime at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
12:20:22.493 526 projetoTeste ERROR AndroidRuntime at dalvik.system.NativeStart.main(Native Method)
12:20:22.493 526 projetoTeste ERROR AndroidRuntime Caused by: java.lang.ClassCastException: projetoTeste.dto.Periodo cannot be cast to projetoTeste.dto.ProdutoAgrupamento
12:20:22.493 526 projetoTeste ERROR AndroidRuntime at projetoTeste.dto.Venda.readFromParcel(Venda.java:343)
12:20:22.493 526 projetoTeste ERROR AndroidRuntime at projetoTeste.dto.Venda.<init>(Venda.java:69)
12:20:22.493 526 projetoTeste ERROR AndroidRuntime at projetoTeste.dto.Venda.<init>(Venda.java:12)
12:20:22.493 526 projetoTeste ERROR AndroidRuntime at projetoTeste.dto.Venda$1.createFromParcel(Venda.java:349)
12:20:22.493 526 projetoTeste ERROR AndroidRuntime at projetoTeste.dto.Venda$1.createFromParcel(Venda.java:347)
12:20:22.493 526 projetoTeste ERROR AndroidRuntime at android.os.Parcel.readParcelable(Parcel.java:1992)
12:20:22.493 526 projetoTeste ERROR AndroidRuntime at android.os.Parcel.readValue(Parcel.java:1854)
12:20:22.493 526 projetoTeste ERROR AndroidRuntime at android.os.Parcel.readMapInternal(Parcel.java:2094)
12:20:22.493 526 projetoTeste ERROR AndroidRuntime at android.os.Bundle.unparcel(Bundle.java:223)
12:20:22.493 526 projetoTeste ERROR AndroidRuntime at android.os.Bundle.getParcelable(Bundle.java:1158)
12:20:22.493 526 projetoTeste ERROR AndroidRuntime at projetoTeste.controle.Activity_VendaProduto.onCreate(Activity_VendaProduto.java:79)
12:20:22.493 526 projetoTeste ERROR AndroidRuntime at android.app.Activity.performCreate(Activity.java:4465)
12:20:22.493 526 projetoTeste ERROR AndroidRuntime at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1049)
12:20:22.493 526 projetoTeste ERROR AndroidRuntime at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1920)
12:20:22.493 526 projetoTeste ERROR AndroidRuntime ... 11 more
所以,我来到这里求助,我尝试过并且无法看到这个错误仍然发生的地点和原因。
提前致谢!
---更新---
解决了,我已经按照答案的步骤,修复了一些转换/写入/读取列表和数组,现在看起来工作正常! 谢谢!
答案 0 :(得分:2)
只是为了正确的代码样式,将CREATOR的泛型类型添加到所有Parcelable对象。对于Periodo,它应该是
public static final Parcelable.Creator<Periodo> CREATOR = new Parcelable.Creator<Periodo>() {
你不需要做
if(tipoProdutoLista != null){
for(int i=0; i < tipoProdutoLista.length;++i){
parcelableTipoProduto[i] = (Parcelable) tipoProdutoLista[i];
}
dest.writeParcelableArray(parcelableTipoProduto, flags);
}
按原样传递tipoProdutoLista,它已经是Parcelable,并删除了标记。
dest.writeParcelableArray(tipoProdutoLista, 0);
错误是,在写入Parcelable时,不得添加与writeToParcel参数相同的标志。
在调用writeParcelable时使用零
替换标志当时
dest.writeParcelable(visita, flags);
应该是
dest.writeParcelable(visita, 0);
在所有的地方替换 writeParcelable 。