android.os.BadParcelableException: ClassNotFoundException when unmarshalling: at android.os.Parcel.readParcelableCreator(Parcel.java:3364) at android.os.Parcel.readParcelable(Parcel.java:3272) at android.view.InsetsSourceControl.<init>(InsetsSourceControl.java:71) at android.view.InsetsSourceControl$1.createFromParcel(InsetsSourceControl.java:116) at android.view.InsetsSourceControl$1.createFromParcel(InsetsSourceControl.java:114) at android.os.Parcel.readTypedObject(Parcel.java:3119) at android.os.Parcel.readTypedArray(Parcel.java:3089) at android.view.IWindowSession$Stub$Proxy.relayout(IWindowSession.java:1739) at android.view.ViewRootImpl.relayoutWindow(ViewRootImpl.java:7702) at android.view.ViewRootImpl.performTraversals(ViewRootImpl.java:2816) at android.view.ViewRootImpl.doTraversal(ViewRootImpl.java:2133) at android.view.ViewRootImpl$TraversalRunnable.run(ViewRootImpl.java:8439) at android.view.Choreographer$CallbackRecord.run(Choreographer.java:1089) at android.view.Choreographer.doCallbacks(Choreographer.java:907) at android.view.Choreographer.doFrame(Choreographer.java:842) at android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:1074) at android.os.Handler.handleCallback(Handler.java:967) at android.os.Handler.dispatchMessage(Handler.java:104) at android.os.Looper.loop(Looper.java:243) at android.app.ActivityThread.main(ActivityThread.java:8021) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:591) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1164)
时间: 2023-12-28 09:04:08 浏览: 170
这是一个 Android 应用程序崩溃的错误日志,错误信息为 BadParcelableException,意味着在反序列化过程中,找不到对应的类。具体来说,这个错误发生在读取一个 Parcelable 对象时,系统无法找到该对象的类定义。在这个错误日志中,出现了很多 Android 系统的类,比如 InsetsSourceControl 和 ViewRootImpl 等,但具体哪个 Parcelable 对象出现了问题需要进一步排查。可能的原因包括:对象所在的类没有正确实现 Parcelable 接口,或者对象的类定义在系统中不存在。
相关问题
android.os.BadParcelableException: ClassNotFoundException when unmarshalling:
这个异常通常在 Android 应用程序中发生,原因是在跨进程通信过程中,序列化和反序列化过程中类的定义发生了变化,导致反序列化时找不到对应的类而抛出异常。具体来说,当一个类实现了 Parcelable 接口,而在序列化和反序列化的过程中,该类的定义发生了变化,导致反序列化时找不到该类的定义而抛出 ClassNotFoundException 异常。
解决这个问题的方法是,确保序列化和反序列化的过程中,涉及的类的定义始终保持一致。可以考虑使用相对稳定的数据类型进行序列化和反序列化,如基本数据类型或者字符串。如果必须使用自定义类,可以考虑使用 Parcelable.Creator 接口来实现序列化和反序列化。此外,还可以使用 Proguard 工具对代码进行混淆,以减少类的定义变化对程序的影响。
E/AndroidRuntime: FATAL EXCEPTION: main Process: com.hnucm.c202101020146, PID: 15114 android.view.InflateException: Binary XML file line #22 in com.hnucm.c202101020146:layout/fragment_library: Binary XML file line #22 in com.hnucm.c202101020146:layout/fragment_library: Error inflating class com.scwang.smart.refresh.layout.SmartRefreshLayout Caused by: android.view.InflateException: Binary XML file line #22 in com.hnucm.c202101020146:layout/fragment_library: Error inflating class com.scwang.smart.refresh.layout.SmartRefreshLayout Caused by: java.lang.ClassNotFoundException: com.scwang.smart.refresh.layout.SmartRefreshLayout
这是因为在运行时找不到com.scwang.smart.refresh.layout.SmartRefreshLayout类,可能的原因是您在布局文件中引用的第三方库没有正确添加到您的项目中。
解决方法包括:
1.检查您的项目是否正确添加了com.scwang.smartrefresh:SmartRefreshLayout库。您可以在build.gradle文件中添加以下行来添加库依赖项:
```
implementation 'com.scwang.smartrefresh:SmartRefreshLayout:1.1.0'
```
2.如果您已经添加了库依赖项,请确保您的依赖项名称和版本号与库的实际名称和版本号相匹配。
3.如果您的项目中使用了ProGuard,则需要在ProGuard配置文件中添加以下行以保留SmartRefreshLayout库的类:
```
-keep class com.scwang.smart.refresh.** {*;}
```
4.如果以上方法都无法解决问题,则可能是因为您的SmartRefreshLayout库版本过低或过高,建议您尝试使用最新版本。
阅读全文