使用Bundle 的getParcelableArray 出現了以下錯誤:
Class not found when unmarshalling
java.lang.ClassNotFoundException
java.lang.NoClassDefFoundError: Class not found using the boot class loader; no stack trace available
這個可能就需要設置下ClassLoader, 比如:
Bundle bundleGet = msg.getData();
bundleGet.setClassLoader(XXX.class.getClassLoader());