问题描述
- Could not read input channel……
-
Could not read input channel file descriptors from parcel.
1.RemoteView中添加的图片太大了,超过40K会报这个异常
2.Intent传递的数据太大了超过1M也会报这个错误
3.FileDescripter太多而且没有关闭,looper太多没有quit。
4.试试在AndroidManefest.xml中对当前Activity配置configchange=“orientation|keyboardHidden”强制在Activity横竖屏切换的时候不重新onCreate。
5.谷歌原生BUG很多人都遇到这个问题而且没有得到解决java.lang.RuntimeException: Could not read input channel file descriptors from parcel. at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2295) at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2345) at android.app.ActivityThread.access$1100(ActivityThread.java:139) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1256) at android.os.Handler.dispatchMessage(Handler.java:102) at android.os.Looper.loop(Looper.java:136) at android.app.ActivityThread.main(ActivityThread.java:5314) at java.lang.reflect.Method.invokeNative(Native Method) at java.lang.reflect.Method.invoke(Method.java:515) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:864) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:680) at dalvik.system.NativeStart.main(Native Method)
这些问题都不太好查 很多次 都抓取到这个异常 求解释为什么会出现这个异常 这个问题我找了很久没有找到正面的回答
解决方案
[Exception] Could not read input channel file descriptors from parcel.
1.RemoteView中添加的图片太大了,超过40K会报这个异常
2.Intent传递的数据太大了超过1M也会报这个错误
3.FileDescripter太多而且没有关闭,looper太多没有quit。
4.试试在Andro......
答案就在这里:Could not read input channel file descriptors from parcel.
----------------------
时间: 2024-09-17 05:00:39