使用Bundle 的getParcelableArray 出现了以下错误:
Class not found when unmarshallingjava.lang.ClassNotFoundExceptionjava.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack trace available
这个可能就需要设置下ClassLoader, 比如:
Bundle bundleGet = msg.getData();
bundleGet.setClassLoader(XXX.class.getClassLoader());
时间: 2024-11-08 21:54:10