Android:unable to start Activity ...的几种原因

本文总结了Android应用中无法启动Activity的常见原因,包括未在AndroidManifest.xml中注册Activity、使用了错误的布局文件、布局文件内容错误以及findViewById方法使用不当等问题,并提供了相应的排查思路。

Android:unable to start Activity ...的几种原因


1 .  比较容易检测到的一种原因是AndroidManifest.xml文件中没有注册相关的Activity

2 . 
<span style="font-size:14px;"> @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        setContentView(R.layout.login);
}</span>
R.layout.login的问题,即使用了不恰当的布局文件


3. 布局文件中的内容出错,有些错误 xml编辑器并不会报错 所以有仔细检查的必要


4. findViewById 这个经常隐藏着错误,不小心就会出错,注意是否引用不当,比如自定义View时:
<span style="font-size:14px;">View view = myinflater.inflate(R.layout.tab, null);
ImageView icon = (ImageView) view.findViewById(R.id.icon);</span>
 忘记加前面的view也会出现此类错误

Line 8535: 09-25 17:38:26.095 1419 1419 E AndroidRuntime: Original WTF: Line 8536: 09-25 17:38:26.095 1419 1419 E AndroidRuntime: android.util.Log$TerribleFailure: No service published for: user Line 8537: 09-25 17:38:26.095 1419 1419 E AndroidRuntime: at android.util.Log.wtf(Log.java:352) Line 8538: 09-25 17:38:26.095 1419 1419 E AndroidRuntime: at android.util.Log.wtf(Log.java:346) Line 8539: 09-25 17:38:26.095 1419 1419 E AndroidRuntime: at android.app.SystemServiceRegistry.onServiceNotFound(SystemServiceRegistry.java:2075) Line 8540: 09-25 17:38:26.095 1419 1419 E AndroidRuntime: at android.app.SystemServiceRegistry$CachedServiceFetcher.getService(SystemServiceRegistry.java:2003) Line 8541: 09-25 17:38:26.095 1419 1419 E AndroidRuntime: at android.app.SystemServiceRegistry.getSystemService(SystemServiceRegistry.java:1672) Line 8542: 09-25 17:38:26.095 1419 1419 E AndroidRuntime: at android.app.ContextImpl.getSystemService(ContextImpl.java:2212) Line 8543: 09-25 17:38:26.095 1419 1419 E AndroidRuntime: at android.content.Context.getSystemService(Context.java:4420) Line 8544: 09-25 17:38:26.095 1419 1419 E AndroidRuntime: at android.app.ContextImpl.getDisplayNoVerify(ContextImpl.java:3060) Line 8545: 09-25 17:38:26.095 1419 1419 E AndroidRuntime: at android.app.ContextImpl.getDisplayId(ContextImpl.java:3076) Line 8546: 09-25 17:38:26.095 1419 1419 E AndroidRuntime: at android.app.ContextImpl.createWindowContextResources(ContextImpl.java:2954) Line 8547: 09-25 17:38:26.095 1419 1419 E AndroidRuntime: at android.app.ContextImpl.createWindowContextBase(ContextImpl.java:2925) Line 8548: 09-25 17:38:26.095 1419 1419 E AndroidRuntime: at android.app.ContextImpl.createSystemUiContext(ContextImpl.java:3314) Line 8549: 09-25 17:38:26.095 1419 1419 E AndroidRuntime: at android.app.ActivityThread.getSystemUiContext(ActivityThread.java:2944) Line 8550: 09-25 17:38:26.095 1419 1419 E AndroidRuntime: at android.app.ActivityThread.getSystemUiContext(ActivityThread.java:2928) Line 8551: 09-25 17:38:26.095 1419 1419 E AndroidRuntime: at com.android.server.SystemServer.createSystemContext(SystemServer.java:1085) Line 8552: 09-25 17:38:26.095 1419 1419 E AndroidRuntime: at com.android.server.SystemServer.run(SystemServer.java:901) Line 8553: 09-25 17:38:26.095 1419 1419 E AndroidRuntime: at com.android.server.SystemServer.main(SystemServer.java:679) Line 8554: 09-25 17:38:26.095 1419 1419 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method) Line 8555: 09-25 17:38:26.095 1419 1419 E AndroidRuntime: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:573) Line 8556: 09-25 17:38:26.095 1419 1419 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1027) Line 8557: 09-25 17:38:26.095 1419 1419 E AndroidRuntime: Caused by: android.os.ServiceManager$ServiceNotFoundException: No service published for: user Line 8558: 09-25 17:38:26.095 1419 1419 E AndroidRuntime: at android.os.ServiceManager.getServiceOrThrow(ServiceManager.java:166) Line 8559: 09-25 17:38:26.095 1419 1419 E AndroidRuntime: at android.app.SystemServiceRegistry$60.createService(SystemServiceRegistry.java:816) Line 8560: 09-25 17:38:26.095 1419 1419 E AndroidRuntime: at android.app.SystemServiceRegistry$60.createService(SystemServiceRegistry.java:813) Line 8561: 09-25 17:38:26.095 1419 1419 E AndroidRuntime: at android.app.SystemServiceRegistry$CachedServiceFetcher.getService(SystemServiceRegistry.java:1999) Line 8562: 09-25 17:38:26.095 1419 1419 E AndroidRuntime: ... 16 more Line 8564: 09-25 17:38:26.096 1419 1419 E AndroidRuntime: Original WTF: Line 8565: 09-25 17:38:26.096 1419 1419 E AndroidRuntime: android.util.Log$TerribleFailure: Manager wrapper not available: user Line 8566: 09-25 17:38:26.096 1419 1419 E AndroidRuntime: at android.util.Log.wtf(Log.java:352) Line 8567: 09-25 17:38:26.096 1419 1419 E AndroidRuntime: at android.util.Slog.wtf(Slog.java:239) Line 8568: 09-25 17:38:26.096 1419 1419 E AndroidRuntime: at android.app.SystemServiceRegistry.getSystemService(SystemServiceRegistry.java:1685) Line 8569: 09-25 17:38:26.096 1419 1419 E AndroidRuntime: at android.app.ContextImpl.getSystemService(ContextImpl.java:2212) Line 8570: 09-25 17:38:26.096 1419 1419 E AndroidRuntime: at android.content.Context.getSystemService(Context.java:4420) Line 8571: 09-25 17:38:26.096 1419 1419 E AndroidRuntime: at android.app.ContextImpl.getDisplayNoVerify(ContextImpl.java:3060) Line 8572: 09-25 17:38:26.096 1419 1419 E AndroidRuntime: at android.app.ContextImpl.getDisplayId(ContextImpl.java:3076) Line 8573: 09-25 17:38:26.096 1419 1419 E AndroidRuntime: at android.app.ContextImpl.createWindowContextResources(ContextImpl.java:2954) Line 8574: 09-25 17:38:26.096 1419 1419 E AndroidRuntime: at android.app.ContextImpl.createWindowContextBase(ContextImpl.java:2925) Line 8575: 09-25 17:38:26.096 1419 1419 E AndroidRuntime: at android.app.ContextImpl.createSystemUiContext(ContextImpl.java:3314) Line 8576: 09-25 17:38:26.096 1419 1419 E AndroidRuntime: at android.app.ActivityThread.getSystemUiContext(ActivityThread.java:2944) Line 8577: 09-25 17:38:26.096 1419 1419 E AndroidRuntime: at android.app.ActivityThread.getSystemUiContext(ActivityThread.java:2928) Line 8578: 09-25 17:38:26.096 1419 1419 E AndroidRuntime: at com.android.server.SystemServer.createSystemContext(SystemServer.java:1085) Line 8579: 09-25 17:38:26.096 1419 1419 E AndroidRuntime: at com.android.server.SystemServer.run(SystemServer.java:901) Line 8580: 09-25 17:38:26.096 1419 1419 E AndroidRuntime: at com.android.server.SystemServer.main(SystemServer.java:679) Line 8581: 09-25 17:38:26.096 1419 1419 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method) Line 8582: 09-25 17:38:26.096 1419 1419 E AndroidRuntime: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:573) Line 8583: 09-25 17:38:26.096 1419 1419 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1027) Line 28758: 09-25 17:38:29.031 2254 2254 I AndroidRuntime: VM exiting with result code 0, cleanup skipped. Line 40132: 09-25 17:38:30.254 2467 2725 E AndroidRuntime: FATAL EXCEPTION: Thread-8 Line 40133: 09-25 17:38:30.254 2467 2725 E AndroidRuntime: Process: com.tinnove.nid, PID: 2467 Line 40134: 09-25 17:38:30.254 2467 2725 E AndroidRuntime: java.lang.IllegalArgumentException: Invalid path: /data/data/com.tinnove.nid/files/LaneData/ Line 40135: 09-25 17:38:30.254 2467 2725 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:53) Line 40136: 09-25 17:38:30.254 2467 2725 E AndroidRuntime: at android.os.StatFs.<init>(StatFs.java:43) Line 40137: 09-25 17:38:30.254 2467 2725 E AndroidRuntime: at com.mxnavi.api.config.Utils.getFreeSize(Utils.java:149) Line 40138: 09-25 17:38:30.254 2467 2725 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.isSpaceEnough(MXConfigThread.java:217) Line 40139: 09-25 17:38:30.254 2467 2725 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.run(MXConfigThread.java:76) Line 40140: 09-25 17:38:30.254 2467 2725 E AndroidRuntime: Caused by: android.system.ErrnoException: statvfs failed: ENOENT (No such file or directory) Line 40141: 09-25 17:38:30.254 2467 2725 E AndroidRuntime: at libcore.io.Linux.statvfs(Native Method) Line 40142: 09-25 17:38:30.254 2467 2725 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 40143: 09-25 17:38:30.254 2467 2725 E AndroidRuntime: at libcore.io.BlockGuardOs.statvfs(BlockGuardOs.java:428) Line 40144: 09-25 17:38:30.254 2467 2725 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 40145: 09-25 17:38:30.254 2467 2725 E AndroidRuntime: at android.system.Os.statvfs(Os.java:909) Line 40146: 09-25 17:38:30.254 2467 2725 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:51) Line 40147: 09-25 17:38:30.254 2467 2725 E AndroidRuntime: ... 4 more Line 45183: 09-25 17:38:30.760 2776 2844 E AndroidRuntime: FATAL EXCEPTION: Thread-7 Line 45184: 09-25 17:38:30.760 2776 2844 E AndroidRuntime: Process: com.tinnove.nid, PID: 2776 Line 45185: 09-25 17:38:30.760 2776 2844 E AndroidRuntime: java.lang.IllegalArgumentException: Invalid path: /data/data/com.tinnove.nid/files/LaneData/ Line 45186: 09-25 17:38:30.760 2776 2844 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:53) Line 45187: 09-25 17:38:30.760 2776 2844 E AndroidRuntime: at android.os.StatFs.<init>(StatFs.java:43) Line 45188: 09-25 17:38:30.760 2776 2844 E AndroidRuntime: at com.mxnavi.api.config.Utils.getFreeSize(Utils.java:149) Line 45189: 09-25 17:38:30.760 2776 2844 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.isSpaceEnough(MXConfigThread.java:217) Line 45190: 09-25 17:38:30.760 2776 2844 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.run(MXConfigThread.java:76) Line 45191: 09-25 17:38:30.760 2776 2844 E AndroidRuntime: Caused by: android.system.ErrnoException: statvfs failed: ENOENT (No such file or directory) Line 45192: 09-25 17:38:30.760 2776 2844 E AndroidRuntime: at libcore.io.Linux.statvfs(Native Method) Line 45193: 09-25 17:38:30.760 2776 2844 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 45194: 09-25 17:38:30.760 2776 2844 E AndroidRuntime: at libcore.io.BlockGuardOs.statvfs(BlockGuardOs.java:428) Line 45195: 09-25 17:38:30.760 2776 2844 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 45196: 09-25 17:38:30.760 2776 2844 E AndroidRuntime: at android.system.Os.statvfs(Os.java:909) Line 45197: 09-25 17:38:30.760 2776 2844 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:51) Line 45198: 09-25 17:38:30.760 2776 2844 E AndroidRuntime: ... 4 more Line 50334: 09-25 17:38:31.085 2869 2916 E AndroidRuntime: FATAL EXCEPTION: Thread-7 Line 50335: 09-25 17:38:31.085 2869 2916 E AndroidRuntime: Process: com.tinnove.nid, PID: 2869 Line 50336: 09-25 17:38:31.085 2869 2916 E AndroidRuntime: java.lang.IllegalArgumentException: Invalid path: /data/data/com.tinnove.nid/files/LaneData/ Line 50337: 09-25 17:38:31.085 2869 2916 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:53) Line 50338: 09-25 17:38:31.085 2869 2916 E AndroidRuntime: at android.os.StatFs.<init>(StatFs.java:43) Line 50339: 09-25 17:38:31.085 2869 2916 E AndroidRuntime: at com.mxnavi.api.config.Utils.getFreeSize(Utils.java:149) Line 50340: 09-25 17:38:31.085 2869 2916 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.isSpaceEnough(MXConfigThread.java:217) Line 50341: 09-25 17:38:31.085 2869 2916 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.run(MXConfigThread.java:76) Line 50342: 09-25 17:38:31.085 2869 2916 E AndroidRuntime: Caused by: android.system.ErrnoException: statvfs failed: ENOENT (No such file or directory) Line 50343: 09-25 17:38:31.085 2869 2916 E AndroidRuntime: at libcore.io.Linux.statvfs(Native Method) Line 50344: 09-25 17:38:31.085 2869 2916 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 50345: 09-25 17:38:31.085 2869 2916 E AndroidRuntime: at libcore.io.BlockGuardOs.statvfs(BlockGuardOs.java:428) Line 50346: 09-25 17:38:31.085 2869 2916 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 50347: 09-25 17:38:31.085 2869 2916 E AndroidRuntime: at android.system.Os.statvfs(Os.java:909) Line 50348: 09-25 17:38:31.085 2869 2916 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:51) Line 50349: 09-25 17:38:31.085 2869 2916 E AndroidRuntime: ... 4 more Line 57300: 09-25 17:38:31.398 2927 2961 E AndroidRuntime: FATAL EXCEPTION: Thread-7 Line 57301: 09-25 17:38:31.398 2927 2961 E AndroidRuntime: Process: com.tinnove.nid, PID: 2927 Line 57302: 09-25 17:38:31.398 2927 2961 E AndroidRuntime: java.lang.IllegalArgumentException: Invalid path: /data/data/com.tinnove.nid/files/LaneData/ Line 57303: 09-25 17:38:31.398 2927 2961 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:53) Line 57304: 09-25 17:38:31.398 2927 2961 E AndroidRuntime: at android.os.StatFs.<init>(StatFs.java:43) Line 57305: 09-25 17:38:31.398 2927 2961 E AndroidRuntime: at com.mxnavi.api.config.Utils.getFreeSize(Utils.java:149) Line 57306: 09-25 17:38:31.398 2927 2961 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.isSpaceEnough(MXConfigThread.java:217) Line 57307: 09-25 17:38:31.398 2927 2961 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.run(MXConfigThread.java:76) Line 57308: 09-25 17:38:31.398 2927 2961 E AndroidRuntime: Caused by: android.system.ErrnoException: statvfs failed: ENOENT (No such file or directory) Line 57309: 09-25 17:38:31.398 2927 2961 E AndroidRuntime: at libcore.io.Linux.statvfs(Native Method) Line 57310: 09-25 17:38:31.398 2927 2961 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 57311: 09-25 17:38:31.398 2927 2961 E AndroidRuntime: at libcore.io.BlockGuardOs.statvfs(BlockGuardOs.java:428) Line 57312: 09-25 17:38:31.398 2927 2961 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 57313: 09-25 17:38:31.398 2927 2961 E AndroidRuntime: at android.system.Os.statvfs(Os.java:909) Line 57314: 09-25 17:38:31.398 2927 2961 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:51) Line 57315: 09-25 17:38:31.398 2927 2961 E AndroidRuntime: ... 4 more Line 63524: 09-25 17:38:31.747 2967 3017 E AndroidRuntime: FATAL EXCEPTION: Thread-8 Line 63525: 09-25 17:38:31.747 2967 3017 E AndroidRuntime: Process: com.tinnove.nid, PID: 2967 Line 63526: 09-25 17:38:31.747 2967 3017 E AndroidRuntime: java.lang.IllegalArgumentException: Invalid path: /data/data/com.tinnove.nid/files/LaneData/ Line 63527: 09-25 17:38:31.747 2967 3017 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:53) Line 63528: 09-25 17:38:31.747 2967 3017 E AndroidRuntime: at android.os.StatFs.<init>(StatFs.java:43) Line 63529: 09-25 17:38:31.747 2967 3017 E AndroidRuntime: at com.mxnavi.api.config.Utils.getFreeSize(Utils.java:149) Line 63530: 09-25 17:38:31.747 2967 3017 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.isSpaceEnough(MXConfigThread.java:217) Line 63531: 09-25 17:38:31.747 2967 3017 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.run(MXConfigThread.java:76) Line 63532: 09-25 17:38:31.747 2967 3017 E AndroidRuntime: Caused by: android.system.ErrnoException: statvfs failed: ENOENT (No such file or directory) Line 63533: 09-25 17:38:31.747 2967 3017 E AndroidRuntime: at libcore.io.Linux.statvfs(Native Method) Line 63534: 09-25 17:38:31.747 2967 3017 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 63535: 09-25 17:38:31.747 2967 3017 E AndroidRuntime: at libcore.io.BlockGuardOs.statvfs(BlockGuardOs.java:428) Line 63536: 09-25 17:38:31.747 2967 3017 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 63537: 09-25 17:38:31.747 2967 3017 E AndroidRuntime: at android.system.Os.statvfs(Os.java:909) Line 63538: 09-25 17:38:31.747 2967 3017 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:51) Line 63539: 09-25 17:38:31.747 2967 3017 E AndroidRuntime: ... 4 more Line 65673: 09-25 17:38:31.976 3039 3075 E AndroidRuntime: FATAL EXCEPTION: Thread-8 Line 65674: 09-25 17:38:31.976 3039 3075 E AndroidRuntime: Process: com.tinnove.nid, PID: 3039 Line 65675: 09-25 17:38:31.976 3039 3075 E AndroidRuntime: java.lang.IllegalArgumentException: Invalid path: /data/data/com.tinnove.nid/files/LaneData/ Line 65676: 09-25 17:38:31.976 3039 3075 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:53) Line 65677: 09-25 17:38:31.976 3039 3075 E AndroidRuntime: at android.os.StatFs.<init>(StatFs.java:43) Line 65678: 09-25 17:38:31.976 3039 3075 E AndroidRuntime: at com.mxnavi.api.config.Utils.getFreeSize(Utils.java:149) Line 65679: 09-25 17:38:31.976 3039 3075 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.isSpaceEnough(MXConfigThread.java:217) Line 65680: 09-25 17:38:31.976 3039 3075 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.run(MXConfigThread.java:76) Line 65681: 09-25 17:38:31.976 3039 3075 E AndroidRuntime: Caused by: android.system.ErrnoException: statvfs failed: ENOENT (No such file or directory) Line 65682: 09-25 17:38:31.976 3039 3075 E AndroidRuntime: at libcore.io.Linux.statvfs(Native Method) Line 65683: 09-25 17:38:31.976 3039 3075 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 65684: 09-25 17:38:31.976 3039 3075 E AndroidRuntime: at libcore.io.BlockGuardOs.statvfs(BlockGuardOs.java:428) Line 65685: 09-25 17:38:31.976 3039 3075 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 65686: 09-25 17:38:31.976 3039 3075 E AndroidRuntime: at android.system.Os.statvfs(Os.java:909) Line 65687: 09-25 17:38:31.976 3039 3075 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:51) Line 65688: 09-25 17:38:31.976 3039 3075 E AndroidRuntime: ... 4 more Line 67851: 09-25 17:38:32.272 3093 3129 E AndroidRuntime: FATAL EXCEPTION: Thread-8 Line 67852: 09-25 17:38:32.272 3093 3129 E AndroidRuntime: Process: com.tinnove.nid, PID: 3093 Line 67853: 09-25 17:38:32.272 3093 3129 E AndroidRuntime: java.lang.IllegalArgumentException: Invalid path: /data/data/com.tinnove.nid/files/LaneData/ Line 67854: 09-25 17:38:32.272 3093 3129 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:53) Line 67855: 09-25 17:38:32.272 3093 3129 E AndroidRuntime: at android.os.StatFs.<init>(StatFs.java:43) Line 67856: 09-25 17:38:32.272 3093 3129 E AndroidRuntime: at com.mxnavi.api.config.Utils.getFreeSize(Utils.java:149) Line 67857: 09-25 17:38:32.272 3093 3129 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.isSpaceEnough(MXConfigThread.java:217) Line 67858: 09-25 17:38:32.272 3093 3129 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.run(MXConfigThread.java:76) Line 67859: 09-25 17:38:32.272 3093 3129 E AndroidRuntime: Caused by: android.system.ErrnoException: statvfs failed: ENOENT (No such file or directory) Line 67860: 09-25 17:38:32.272 3093 3129 E AndroidRuntime: at libcore.io.Linux.statvfs(Native Method) Line 67861: 09-25 17:38:32.272 3093 3129 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 67862: 09-25 17:38:32.272 3093 3129 E AndroidRuntime: at libcore.io.BlockGuardOs.statvfs(BlockGuardOs.java:428) Line 67863: 09-25 17:38:32.272 3093 3129 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 67864: 09-25 17:38:32.272 3093 3129 E AndroidRuntime: at android.system.Os.statvfs(Os.java:909) Line 67865: 09-25 17:38:32.272 3093 3129 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:51) Line 67866: 09-25 17:38:32.272 3093 3129 E AndroidRuntime: ... 4 more Line 71655: 09-25 17:38:32.586 3132 3173 E AndroidRuntime: FATAL EXCEPTION: Thread-8 Line 71656: 09-25 17:38:32.586 3132 3173 E AndroidRuntime: Process: com.tinnove.nid, PID: 3132 Line 71657: 09-25 17:38:32.586 3132 3173 E AndroidRuntime: java.lang.IllegalArgumentException: Invalid path: /data/data/com.tinnove.nid/files/LaneData/ Line 71658: 09-25 17:38:32.586 3132 3173 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:53) Line 71659: 09-25 17:38:32.586 3132 3173 E AndroidRuntime: at android.os.StatFs.<init>(StatFs.java:43) Line 71660: 09-25 17:38:32.586 3132 3173 E AndroidRuntime: at com.mxnavi.api.config.Utils.getFreeSize(Utils.java:149) Line 71661: 09-25 17:38:32.586 3132 3173 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.isSpaceEnough(MXConfigThread.java:217) Line 71662: 09-25 17:38:32.586 3132 3173 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.run(MXConfigThread.java:76) Line 71663: 09-25 17:38:32.586 3132 3173 E AndroidRuntime: Caused by: android.system.ErrnoException: statvfs failed: ENOENT (No such file or directory) Line 71664: 09-25 17:38:32.586 3132 3173 E AndroidRuntime: at libcore.io.Linux.statvfs(Native Method) Line 71665: 09-25 17:38:32.586 3132 3173 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 71666: 09-25 17:38:32.586 3132 3173 E AndroidRuntime: at libcore.io.BlockGuardOs.statvfs(BlockGuardOs.java:428) Line 71667: 09-25 17:38:32.586 3132 3173 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 71668: 09-25 17:38:32.586 3132 3173 E AndroidRuntime: at android.system.Os.statvfs(Os.java:909) Line 71669: 09-25 17:38:32.586 3132 3173 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:51) Line 71670: 09-25 17:38:32.586 3132 3173 E AndroidRuntime: ... 4 more Line 75792: 09-25 17:38:33.023 3185 3250 E AndroidRuntime: FATAL EXCEPTION: Thread-8 Line 75793: 09-25 17:38:33.023 3185 3250 E AndroidRuntime: Process: com.tinnove.nid, PID: 3185 Line 75794: 09-25 17:38:33.023 3185 3250 E AndroidRuntime: java.lang.IllegalArgumentException: Invalid path: /data/data/com.tinnove.nid/files/LaneData/ Line 75795: 09-25 17:38:33.023 3185 3250 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:53) Line 75796: 09-25 17:38:33.023 3185 3250 E AndroidRuntime: at android.os.StatFs.<init>(StatFs.java:43) Line 75797: 09-25 17:38:33.023 3185 3250 E AndroidRuntime: at com.mxnavi.api.config.Utils.getFreeSize(Utils.java:149) Line 75798: 09-25 17:38:33.023 3185 3250 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.isSpaceEnough(MXConfigThread.java:217) Line 75799: 09-25 17:38:33.023 3185 3250 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.run(MXConfigThread.java:76) Line 75800: 09-25 17:38:33.023 3185 3250 E AndroidRuntime: Caused by: android.system.ErrnoException: statvfs failed: ENOENT (No such file or directory) Line 75801: 09-25 17:38:33.023 3185 3250 E AndroidRuntime: at libcore.io.Linux.statvfs(Native Method) Line 75802: 09-25 17:38:33.023 3185 3250 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 75803: 09-25 17:38:33.023 3185 3250 E AndroidRuntime: at libcore.io.BlockGuardOs.statvfs(BlockGuardOs.java:428) Line 75804: 09-25 17:38:33.023 3185 3250 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 75805: 09-25 17:38:33.023 3185 3250 E AndroidRuntime: at android.system.Os.statvfs(Os.java:909) Line 75806: 09-25 17:38:33.023 3185 3250 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:51) Line 75807: 09-25 17:38:33.023 3185 3250 E AndroidRuntime: ... 4 more Line 79072: 09-25 17:38:33.297 3253 3288 E AndroidRuntime: FATAL EXCEPTION: Thread-8 Line 79073: 09-25 17:38:33.297 3253 3288 E AndroidRuntime: Process: com.tinnove.nid, PID: 3253 Line 79074: 09-25 17:38:33.297 3253 3288 E AndroidRuntime: java.lang.IllegalArgumentException: Invalid path: /data/data/com.tinnove.nid/files/LaneData/ Line 79075: 09-25 17:38:33.297 3253 3288 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:53) Line 79076: 09-25 17:38:33.297 3253 3288 E AndroidRuntime: at android.os.StatFs.<init>(StatFs.java:43) Line 79077: 09-25 17:38:33.297 3253 3288 E AndroidRuntime: at com.mxnavi.api.config.Utils.getFreeSize(Utils.java:149) Line 79078: 09-25 17:38:33.297 3253 3288 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.isSpaceEnough(MXConfigThread.java:217) Line 79079: 09-25 17:38:33.297 3253 3288 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.run(MXConfigThread.java:76) Line 79080: 09-25 17:38:33.297 3253 3288 E AndroidRuntime: Caused by: android.system.ErrnoException: statvfs failed: ENOENT (No such file or directory) Line 79081: 09-25 17:38:33.297 3253 3288 E AndroidRuntime: at libcore.io.Linux.statvfs(Native Method) Line 79082: 09-25 17:38:33.297 3253 3288 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 79083: 09-25 17:38:33.297 3253 3288 E AndroidRuntime: at libcore.io.BlockGuardOs.statvfs(BlockGuardOs.java:428) Line 79084: 09-25 17:38:33.297 3253 3288 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 79085: 09-25 17:38:33.297 3253 3288 E AndroidRuntime: at android.system.Os.statvfs(Os.java:909) Line 79086: 09-25 17:38:33.297 3253 3288 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:51) Line 79087: 09-25 17:38:33.297 3253 3288 E AndroidRuntime: ... 4 more Line 82211: 09-25 17:38:33.452 3295 3324 E AndroidRuntime: FATAL EXCEPTION: Thread-8 Line 82212: 09-25 17:38:33.452 3295 3324 E AndroidRuntime: Process: com.tinnove.nid, PID: 3295 Line 82213: 09-25 17:38:33.452 3295 3324 E AndroidRuntime: java.lang.IllegalArgumentException: Invalid path: /data/data/com.tinnove.nid/files/LaneData/ Line 82214: 09-25 17:38:33.452 3295 3324 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:53) Line 82215: 09-25 17:38:33.452 3295 3324 E AndroidRuntime: at android.os.StatFs.<init>(StatFs.java:43) Line 82216: 09-25 17:38:33.452 3295 3324 E AndroidRuntime: at com.mxnavi.api.config.Utils.getFreeSize(Utils.java:149) Line 82217: 09-25 17:38:33.452 3295 3324 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.isSpaceEnough(MXConfigThread.java:217) Line 82218: 09-25 17:38:33.452 3295 3324 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.run(MXConfigThread.java:76) Line 82219: 09-25 17:38:33.452 3295 3324 E AndroidRuntime: Caused by: android.system.ErrnoException: statvfs failed: ENOENT (No such file or directory) Line 82220: 09-25 17:38:33.452 3295 3324 E AndroidRuntime: at libcore.io.Linux.statvfs(Native Method) Line 82221: 09-25 17:38:33.452 3295 3324 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 82222: 09-25 17:38:33.452 3295 3324 E AndroidRuntime: at libcore.io.BlockGuardOs.statvfs(BlockGuardOs.java:428) Line 82223: 09-25 17:38:33.452 3295 3324 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 82224: 09-25 17:38:33.452 3295 3324 E AndroidRuntime: at android.system.Os.statvfs(Os.java:909) Line 82225: 09-25 17:38:33.452 3295 3324 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:51) Line 82226: 09-25 17:38:33.452 3295 3324 E AndroidRuntime: ... 4 more Line 84386: 09-25 17:38:33.613 3329 3380 E AndroidRuntime: FATAL EXCEPTION: Thread-8 Line 84387: 09-25 17:38:33.613 3329 3380 E AndroidRuntime: Process: com.tinnove.nid, PID: 3329 Line 84388: 09-25 17:38:33.613 3329 3380 E AndroidRuntime: java.lang.IllegalArgumentException: Invalid path: /data/data/com.tinnove.nid/files/LaneData/ Line 84389: 09-25 17:38:33.613 3329 3380 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:53) Line 84390: 09-25 17:38:33.613 3329 3380 E AndroidRuntime: at android.os.StatFs.<init>(StatFs.java:43) Line 84391: 09-25 17:38:33.613 3329 3380 E AndroidRuntime: at com.mxnavi.api.config.Utils.getFreeSize(Utils.java:149) Line 84392: 09-25 17:38:33.613 3329 3380 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.isSpaceEnough(MXConfigThread.java:217) Line 84393: 09-25 17:38:33.613 3329 3380 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.run(MXConfigThread.java:76) Line 84394: 09-25 17:38:33.613 3329 3380 E AndroidRuntime: Caused by: android.system.ErrnoException: statvfs failed: ENOENT (No such file or directory) Line 84395: 09-25 17:38:33.613 3329 3380 E AndroidRuntime: at libcore.io.Linux.statvfs(Native Method) Line 84396: 09-25 17:38:33.613 3329 3380 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 84397: 09-25 17:38:33.613 3329 3380 E AndroidRuntime: at libcore.io.BlockGuardOs.statvfs(BlockGuardOs.java:428) Line 84398: 09-25 17:38:33.613 3329 3380 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 84399: 09-25 17:38:33.613 3329 3380 E AndroidRuntime: at android.system.Os.statvfs(Os.java:909) Line 84400: 09-25 17:38:33.613 3329 3380 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:51) Line 84401: 09-25 17:38:33.613 3329 3380 E AndroidRuntime: ... 4 more Line 86010: 09-25 17:38:33.836 3383 3419 E AndroidRuntime: FATAL EXCEPTION: Thread-8 Line 86011: 09-25 17:38:33.836 3383 3419 E AndroidRuntime: Process: com.tinnove.nid, PID: 3383 Line 86012: 09-25 17:38:33.836 3383 3419 E AndroidRuntime: java.lang.IllegalArgumentException: Invalid path: /data/data/com.tinnove.nid/files/LaneData/ Line 86013: 09-25 17:38:33.836 3383 3419 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:53) Line 86014: 09-25 17:38:33.836 3383 3419 E AndroidRuntime: at android.os.StatFs.<init>(StatFs.java:43) Line 86015: 09-25 17:38:33.836 3383 3419 E AndroidRuntime: at com.mxnavi.api.config.Utils.getFreeSize(Utils.java:149) Line 86016: 09-25 17:38:33.836 3383 3419 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.isSpaceEnough(MXConfigThread.java:217) Line 86017: 09-25 17:38:33.836 3383 3419 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.run(MXConfigThread.java:76) Line 86018: 09-25 17:38:33.836 3383 3419 E AndroidRuntime: Caused by: android.system.ErrnoException: statvfs failed: ENOENT (No such file or directory) Line 86019: 09-25 17:38:33.836 3383 3419 E AndroidRuntime: at libcore.io.Linux.statvfs(Native Method) Line 86020: 09-25 17:38:33.836 3383 3419 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 86021: 09-25 17:38:33.836 3383 3419 E AndroidRuntime: at libcore.io.BlockGuardOs.statvfs(BlockGuardOs.java:428) Line 86022: 09-25 17:38:33.836 3383 3419 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 86023: 09-25 17:38:33.836 3383 3419 E AndroidRuntime: at android.system.Os.statvfs(Os.java:909) Line 86024: 09-25 17:38:33.836 3383 3419 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:51) Line 86025: 09-25 17:38:33.836 3383 3419 E AndroidRuntime: ... 4 more Line 87567: 09-25 17:38:33.985 3424 3453 E AndroidRuntime: FATAL EXCEPTION: Thread-8 Line 87568: 09-25 17:38:33.985 3424 3453 E AndroidRuntime: Process: com.tinnove.nid, PID: 3424 Line 87569: 09-25 17:38:33.985 3424 3453 E AndroidRuntime: java.lang.IllegalArgumentException: Invalid path: /data/data/com.tinnove.nid/files/LaneData/ Line 87570: 09-25 17:38:33.985 3424 3453 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:53) Line 87571: 09-25 17:38:33.985 3424 3453 E AndroidRuntime: at android.os.StatFs.<init>(StatFs.java:43) Line 87572: 09-25 17:38:33.985 3424 3453 E AndroidRuntime: at com.mxnavi.api.config.Utils.getFreeSize(Utils.java:149) Line 87573: 09-25 17:38:33.985 3424 3453 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.isSpaceEnough(MXConfigThread.java:217) Line 87574: 09-25 17:38:33.985 3424 3453 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.run(MXConfigThread.java:76) Line 87575: 09-25 17:38:33.985 3424 3453 E AndroidRuntime: Caused by: android.system.ErrnoException: statvfs failed: ENOENT (No such file or directory) Line 87576: 09-25 17:38:33.985 3424 3453 E AndroidRuntime: at libcore.io.Linux.statvfs(Native Method) Line 87577: 09-25 17:38:33.985 3424 3453 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 87578: 09-25 17:38:33.985 3424 3453 E AndroidRuntime: at libcore.io.BlockGuardOs.statvfs(BlockGuardOs.java:428) Line 87579: 09-25 17:38:33.985 3424 3453 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 87580: 09-25 17:38:33.985 3424 3453 E AndroidRuntime: at android.system.Os.statvfs(Os.java:909) Line 87581: 09-25 17:38:33.985 3424 3453 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:51) Line 87582: 09-25 17:38:33.985 3424 3453 E AndroidRuntime: ... 4 more Line 90115: 09-25 17:38:34.162 3461 3495 E AndroidRuntime: FATAL EXCEPTION: Thread-8 Line 90116: 09-25 17:38:34.162 3461 3495 E AndroidRuntime: Process: com.tinnove.nid, PID: 3461 Line 90117: 09-25 17:38:34.162 3461 3495 E AndroidRuntime: java.lang.IllegalArgumentException: Invalid path: /data/data/com.tinnove.nid/files/LaneData/ Line 90118: 09-25 17:38:34.162 3461 3495 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:53) Line 90119: 09-25 17:38:34.162 3461 3495 E AndroidRuntime: at android.os.StatFs.<init>(StatFs.java:43) Line 90120: 09-25 17:38:34.162 3461 3495 E AndroidRuntime: at com.mxnavi.api.config.Utils.getFreeSize(Utils.java:149) Line 90121: 09-25 17:38:34.162 3461 3495 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.isSpaceEnough(MXConfigThread.java:217) Line 90122: 09-25 17:38:34.162 3461 3495 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.run(MXConfigThread.java:76) Line 90123: 09-25 17:38:34.162 3461 3495 E AndroidRuntime: Caused by: android.system.ErrnoException: statvfs failed: ENOENT (No such file or directory) Line 90124: 09-25 17:38:34.162 3461 3495 E AndroidRuntime: at libcore.io.Linux.statvfs(Native Method) Line 90125: 09-25 17:38:34.162 3461 3495 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 90126: 09-25 17:38:34.162 3461 3495 E AndroidRuntime: at libcore.io.BlockGuardOs.statvfs(BlockGuardOs.java:428) Line 90127: 09-25 17:38:34.162 3461 3495 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 90128: 09-25 17:38:34.162 3461 3495 E AndroidRuntime: at android.system.Os.statvfs(Os.java:909) Line 90129: 09-25 17:38:34.162 3461 3495 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:51) Line 90130: 09-25 17:38:34.162 3461 3495 E AndroidRuntime: ... 4 more Line 92198: 09-25 17:38:34.408 3504 3535 E AndroidRuntime: FATAL EXCEPTION: Thread-8 Line 92199: 09-25 17:38:34.408 3504 3535 E AndroidRuntime: Process: com.tinnove.nid, PID: 3504 Line 92200: 09-25 17:38:34.408 3504 3535 E AndroidRuntime: java.lang.IllegalArgumentException: Invalid path: /data/data/com.tinnove.nid/files/LaneData/ Line 92201: 09-25 17:38:34.408 3504 3535 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:53) Line 92202: 09-25 17:38:34.408 3504 3535 E AndroidRuntime: at android.os.StatFs.<init>(StatFs.java:43) Line 92203: 09-25 17:38:34.408 3504 3535 E AndroidRuntime: at com.mxnavi.api.config.Utils.getFreeSize(Utils.java:149) Line 92204: 09-25 17:38:34.408 3504 3535 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.isSpaceEnough(MXConfigThread.java:217) Line 92205: 09-25 17:38:34.408 3504 3535 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.run(MXConfigThread.java:76) Line 92206: 09-25 17:38:34.408 3504 3535 E AndroidRuntime: Caused by: android.system.ErrnoException: statvfs failed: ENOENT (No such file or directory) Line 92207: 09-25 17:38:34.408 3504 3535 E AndroidRuntime: at libcore.io.Linux.statvfs(Native Method) Line 92208: 09-25 17:38:34.408 3504 3535 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 92209: 09-25 17:38:34.408 3504 3535 E AndroidRuntime: at libcore.io.BlockGuardOs.statvfs(BlockGuardOs.java:428) Line 92210: 09-25 17:38:34.408 3504 3535 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 92211: 09-25 17:38:34.408 3504 3535 E AndroidRuntime: at android.system.Os.statvfs(Os.java:909) Line 92212: 09-25 17:38:34.408 3504 3535 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:51) Line 92213: 09-25 17:38:34.408 3504 3535 E AndroidRuntime: ... 4 more Line 94114: 09-25 17:38:34.563 3546 3581 E AndroidRuntime: FATAL EXCEPTION: Thread-8 Line 94115: 09-25 17:38:34.563 3546 3581 E AndroidRuntime: Process: com.tinnove.nid, PID: 3546 Line 94116: 09-25 17:38:34.563 3546 3581 E AndroidRuntime: java.lang.IllegalArgumentException: Invalid path: /data/data/com.tinnove.nid/files/LaneData/ Line 94117: 09-25 17:38:34.563 3546 3581 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:53) Line 94118: 09-25 17:38:34.563 3546 3581 E AndroidRuntime: at android.os.StatFs.<init>(StatFs.java:43) Line 94119: 09-25 17:38:34.563 3546 3581 E AndroidRuntime: at com.mxnavi.api.config.Utils.getFreeSize(Utils.java:149) Line 94120: 09-25 17:38:34.563 3546 3581 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.isSpaceEnough(MXConfigThread.java:217) Line 94121: 09-25 17:38:34.563 3546 3581 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.run(MXConfigThread.java:76) Line 94122: 09-25 17:38:34.563 3546 3581 E AndroidRuntime: Caused by: android.system.ErrnoException: statvfs failed: ENOENT (No such file or directory) Line 94123: 09-25 17:38:34.563 3546 3581 E AndroidRuntime: at libcore.io.Linux.statvfs(Native Method) Line 94124: 09-25 17:38:34.563 3546 3581 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 94125: 09-25 17:38:34.563 3546 3581 E AndroidRuntime: at libcore.io.BlockGuardOs.statvfs(BlockGuardOs.java:428) Line 94126: 09-25 17:38:34.563 3546 3581 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 94127: 09-25 17:38:34.563 3546 3581 E AndroidRuntime: at android.system.Os.statvfs(Os.java:909) Line 94128: 09-25 17:38:34.563 3546 3581 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:51) Line 94129: 09-25 17:38:34.563 3546 3581 E AndroidRuntime: ... 4 more Line 95878: 09-25 17:38:34.740 3585 3632 E AndroidRuntime: FATAL EXCEPTION: Thread-8 Line 95879: 09-25 17:38:34.740 3585 3632 E AndroidRuntime: Process: com.tinnove.nid, PID: 3585 Line 95880: 09-25 17:38:34.740 3585 3632 E AndroidRuntime: java.lang.IllegalArgumentException: Invalid path: /data/data/com.tinnove.nid/files/LaneData/ Line 95881: 09-25 17:38:34.740 3585 3632 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:53) Line 95882: 09-25 17:38:34.740 3585 3632 E AndroidRuntime: at android.os.StatFs.<init>(StatFs.java:43) Line 95883: 09-25 17:38:34.740 3585 3632 E AndroidRuntime: at com.mxnavi.api.config.Utils.getFreeSize(Utils.java:149) Line 95884: 09-25 17:38:34.740 3585 3632 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.isSpaceEnough(MXConfigThread.java:217) Line 95885: 09-25 17:38:34.740 3585 3632 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.run(MXConfigThread.java:76) Line 95886: 09-25 17:38:34.740 3585 3632 E AndroidRuntime: Caused by: android.system.ErrnoException: statvfs failed: ENOENT (No such file or directory) Line 95887: 09-25 17:38:34.740 3585 3632 E AndroidRuntime: at libcore.io.Linux.statvfs(Native Method) Line 95888: 09-25 17:38:34.740 3585 3632 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 95889: 09-25 17:38:34.740 3585 3632 E AndroidRuntime: at libcore.io.BlockGuardOs.statvfs(BlockGuardOs.java:428) Line 95890: 09-25 17:38:34.740 3585 3632 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 95891: 09-25 17:38:34.740 3585 3632 E AndroidRuntime: at android.system.Os.statvfs(Os.java:909) Line 95892: 09-25 17:38:34.740 3585 3632 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:51) Line 95893: 09-25 17:38:34.740 3585 3632 E AndroidRuntime: ... 4 more Line 99458: 09-25 17:38:34.977 3642 3690 E AndroidRuntime: FATAL EXCEPTION: Thread-8 Line 99459: 09-25 17:38:34.977 3642 3690 E AndroidRuntime: Process: com.tinnove.nid, PID: 3642 Line 99460: 09-25 17:38:34.977 3642 3690 E AndroidRuntime: java.lang.IllegalArgumentException: Invalid path: /data/data/com.tinnove.nid/files/LaneData/ Line 99461: 09-25 17:38:34.977 3642 3690 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:53) Line 99462: 09-25 17:38:34.977 3642 3690 E AndroidRuntime: at android.os.StatFs.<init>(StatFs.java:43) Line 99463: 09-25 17:38:34.977 3642 3690 E AndroidRuntime: at com.mxnavi.api.config.Utils.getFreeSize(Utils.java:149) Line 99464: 09-25 17:38:34.977 3642 3690 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.isSpaceEnough(MXConfigThread.java:217) Line 99465: 09-25 17:38:34.977 3642 3690 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.run(MXConfigThread.java:76) Line 99466: 09-25 17:38:34.977 3642 3690 E AndroidRuntime: Caused by: android.system.ErrnoException: statvfs failed: ENOENT (No such file or directory) Line 99467: 09-25 17:38:34.977 3642 3690 E AndroidRuntime: at libcore.io.Linux.statvfs(Native Method) Line 99468: 09-25 17:38:34.977 3642 3690 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 99469: 09-25 17:38:34.977 3642 3690 E AndroidRuntime: at libcore.io.BlockGuardOs.statvfs(BlockGuardOs.java:428) Line 99470: 09-25 17:38:34.977 3642 3690 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 99471: 09-25 17:38:34.977 3642 3690 E AndroidRuntime: at android.system.Os.statvfs(Os.java:909) Line 99472: 09-25 17:38:34.977 3642 3690 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:51) Line 99473: 09-25 17:38:34.977 3642 3690 E AndroidRuntime: ... 4 more Line 101058: 09-25 17:38:35.059 2379 2379 I AndroidRuntime: VM exiting with result code 0, cleanup skipped. Line 102379: 09-25 17:38:35.130 3694 3731 E AndroidRuntime: FATAL EXCEPTION: Thread-8 Line 102380: 09-25 17:38:35.130 3694 3731 E AndroidRuntime: Process: com.tinnove.nid, PID: 3694 Line 102381: 09-25 17:38:35.130 3694 3731 E AndroidRuntime: java.lang.IllegalArgumentException: Invalid path: /data/data/com.tinnove.nid/files/LaneData/ Line 102382: 09-25 17:38:35.130 3694 3731 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:53) Line 102383: 09-25 17:38:35.130 3694 3731 E AndroidRuntime: at android.os.StatFs.<init>(StatFs.java:43) Line 102384: 09-25 17:38:35.130 3694 3731 E AndroidRuntime: at com.mxnavi.api.config.Utils.getFreeSize(Utils.java:149) Line 102385: 09-25 17:38:35.130 3694 3731 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.isSpaceEnough(MXConfigThread.java:217) Line 102386: 09-25 17:38:35.130 3694 3731 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.run(MXConfigThread.java:76) Line 102387: 09-25 17:38:35.130 3694 3731 E AndroidRuntime: Caused by: android.system.ErrnoException: statvfs failed: ENOENT (No such file or directory) Line 102388: 09-25 17:38:35.130 3694 3731 E AndroidRuntime: at libcore.io.Linux.statvfs(Native Method) Line 102389: 09-25 17:38:35.130 3694 3731 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 102390: 09-25 17:38:35.130 3694 3731 E AndroidRuntime: at libcore.io.BlockGuardOs.statvfs(BlockGuardOs.java:428) Line 102391: 09-25 17:38:35.130 3694 3731 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 102392: 09-25 17:38:35.130 3694 3731 E AndroidRuntime: at android.system.Os.statvfs(Os.java:909) Line 102393: 09-25 17:38:35.130 3694 3731 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:51) Line 102394: 09-25 17:38:35.130 3694 3731 E AndroidRuntime: ... 4 more Line 106306: 09-25 17:38:35.299 3735 3782 E AndroidRuntime: FATAL EXCEPTION: Thread-8 Line 106307: 09-25 17:38:35.299 3735 3782 E AndroidRuntime: Process: com.tinnove.nid, PID: 3735 Line 106308: 09-25 17:38:35.299 3735 3782 E AndroidRuntime: java.lang.IllegalArgumentException: Invalid path: /data/data/com.tinnove.nid/files/LaneData/ Line 106309: 09-25 17:38:35.299 3735 3782 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:53) Line 106310: 09-25 17:38:35.299 3735 3782 E AndroidRuntime: at android.os.StatFs.<init>(StatFs.java:43) Line 106311: 09-25 17:38:35.299 3735 3782 E AndroidRuntime: at com.mxnavi.api.config.Utils.getFreeSize(Utils.java:149) Line 106312: 09-25 17:38:35.299 3735 3782 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.isSpaceEnough(MXConfigThread.java:217) Line 106313: 09-25 17:38:35.299 3735 3782 E AndroidRuntime: at com.mxnavi.api.config.MXConfigThread.run(MXConfigThread.java:76) Line 106314: 09-25 17:38:35.299 3735 3782 E AndroidRuntime: Caused by: android.system.ErrnoException: statvfs failed: ENOENT (No such file or directory) Line 106315: 09-25 17:38:35.299 3735 3782 E AndroidRuntime: at libcore.io.Linux.statvfs(Native Method) Line 106316: 09-25 17:38:35.299 3735 3782 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 106317: 09-25 17:38:35.299 3735 3782 E AndroidRuntime: at libcore.io.BlockGuardOs.statvfs(BlockGuardOs.java:428) Line 106318: 09-25 17:38:35.299 3735 3782 E AndroidRuntime: at libcore.io.ForwardingOs.statvfs(ForwardingOs.java:852) Line 106319: 09-25 17:38:35.299 3735 3782 E AndroidRuntime: at android.system.Os.statvfs(Os.java:909) Line 106320: 09-25 17:38:35.299 3735 3782 E AndroidRuntime: at android.os.StatFs.doStat(StatFs.java:51) Line 106321: 09-25 17:38:35.299 3735 3782 E AndroidRuntime: ... 4 more C:\Users\WTCL\1758.txt (54 hits) Line 124: 09-25 17:57:57.113 7982 7982 E AndroidRuntime: FATAL EXCEPTION: main Line 125: 09-25 17:57:57.113 7982 7982 E AndroidRuntime: Process: com.tinnove.aiassistant, PID: 7982 Line 126: 09-25 17:57:57.113 7982 7982 E AndroidRuntime: java.lang.RuntimeException: Unable to start activity ComponentInfo{com.tinnove.aiassistant/com.tinnove.aiassistant.MainActivity}: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity. Line 127: 09-25 17:57:57.113 7982 7982 E AndroidRuntime: at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3866) Line 128: 09-25 17:57:57.113 7982 7982 E AndroidRuntime: at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:4007) Line 129: 09-25 17:57:57.113 7982 7982 E AndroidRuntime: at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:103) Line 130: 09-25 17:57:57.113 7982 7982 E AndroidRuntime: at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:139) Line 131: 09-25 17:57:57.113 7982 7982 E AndroidRuntime: at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:96) Line 132: 09-25 17:57:57.113 7982 7982 E AndroidRuntime: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2512) Line 133: 09-25 17:57:57.113 7982 7982 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:106) Line 134: 09-25 17:57:57.113 7982 7982 E AndroidRuntime: at android.os.Looper.loopOnce(Looper.java:218) Line 135: 09-25 17:57:57.113 7982 7982 E AndroidRuntime: at android.os.Looper.loop(Looper.java:307) Line 136: 09-25 17:57:57.113 7982 7982 E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java:8309) Line 137: 09-25 17:57:57.113 7982 7982 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method) Line 138: 09-25 17:57:57.113 7982 7982 E AndroidRuntime: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:573) Line 139: 09-25 17:57:57.113 7982 7982 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1049) Line 140: 09-25 17:57:57.113 7982 7982 E AndroidRuntime: Caused by: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity. Line 141: 09-25 17:57:57.113 7982 7982 E AndroidRuntime: at androidx.appcompat.app.AppCompatDelegateImpl.createSubDecor(AppCompatDelegateImpl.java:852) Line 142: 09-25 17:57:57.113 7982 7982 E AndroidRuntime: at androidx.appcompat.app.AppCompatDelegateImpl.ensureSubDecor(AppCompatDelegateImpl.java:815) Line 143: 09-25 17:57:57.113 7982 7982 E AndroidRuntime: at androidx.appcompat.app.AppCompatDelegateImpl.setContentView(AppCompatDelegateImpl.java:703) Line 144: 09-25 17:57:57.113 7982 7982 E AndroidRuntime: at androidx.appcompat.app.AppCompatActivity.setContentView(AppCompatActivity.java:195) Line 145: 09-25 17:57:57.113 7982 7982 E AndroidRuntime: at com.tinnove.aiassistant.MainActivity.onCreate(MainActivity.kt:20) Line 146: 09-25 17:57:57.113 7982 7982 E AndroidRuntime: at android.app.Activity.performCreate(Activity.java:8621) Line 147: 09-25 17:57:57.113 7982 7982 E AndroidRuntime: at android.app.Activity.performCreate(Activity.java:8599) Line 148: 09-25 17:57:57.113 7982 7982 E AndroidRuntime: at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1458) Line 149: 09-25 17:57:57.113 7982 7982 E AndroidRuntime: at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3848) Line 150: 09-25 17:57:57.113 7982 7982 E AndroidRuntime: ... 12 more Line 505: 09-25 17:57:59.132 8188 8188 E AndroidRuntime: FATAL EXCEPTION: main Line 506: 09-25 17:57:59.132 8188 8188 E AndroidRuntime: Process: com.tinnove.aiassistant, PID: 8188 Line 507: 09-25 17:57:59.132 8188 8188 E AndroidRuntime: java.lang.RuntimeException: Unable to start activity ComponentInfo{com.tinnove.aiassistant/com.tinnove.aiassistant.MainActivity}: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity. Line 508: 09-25 17:57:59.132 8188 8188 E AndroidRuntime: at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3866) Line 509: 09-25 17:57:59.132 8188 8188 E AndroidRuntime: at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:4007) Line 510: 09-25 17:57:59.132 8188 8188 E AndroidRuntime: at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:103) Line 511: 09-25 17:57:59.132 8188 8188 E AndroidRuntime: at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:139) Line 512: 09-25 17:57:59.132 8188 8188 E AndroidRuntime: at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:96) Line 513: 09-25 17:57:59.132 8188 8188 E AndroidRuntime: at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2512) Line 514: 09-25 17:57:59.132 8188 8188 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:106) Line 515: 09-25 17:57:59.132 8188 8188 E AndroidRuntime: at android.os.Looper.loopOnce(Looper.java:218) Line 516: 09-25 17:57:59.132 8188 8188 E AndroidRuntime: at android.os.Looper.loop(Looper.java:307) Line 517: 09-25 17:57:59.132 8188 8188 E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java:8309) Line 518: 09-25 17:57:59.132 8188 8188 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method) Line 519: 09-25 17:57:59.132 8188 8188 E AndroidRuntime: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:573) Line 520: 09-25 17:57:59.132 8188 8188 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1049) Line 521: 09-25 17:57:59.132 8188 8188 E AndroidRuntime: Caused by: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity. Line 522: 09-25 17:57:59.132 8188 8188 E AndroidRuntime: at androidx.appcompat.app.AppCompatDelegateImpl.createSubDecor(AppCompatDelegateImpl.java:852) Line 523: 09-25 17:57:59.132 8188 8188 E AndroidRuntime: at androidx.appcompat.app.AppCompatDelegateImpl.ensureSubDecor(AppCompatDelegateImpl.java:815) Line 524: 09-25 17:57:59.132 8188 8188 E AndroidRuntime: at androidx.appcompat.app.AppCompatDelegateImpl.setContentView(AppCompatDelegateImpl.java:703) Line 525: 09-25 17:57:59.132 8188 8188 E AndroidRuntime: at androidx.appcompat.app.AppCompatActivity.setContentView(AppCompatActivity.java:195) Line 526: 09-25 17:57:59.132 8188 8188 E AndroidRuntime: at com.tinnove.aiassistant.MainActivity.onCreate(MainActivity.kt:20) Line 527: 09-25 17:57:59.132 8188 8188 E AndroidRuntime: at android.app.Activity.performCreate(Activity.java:8621) Line 528: 09-25 17:57:59.132 8188 8188 E AndroidRuntime: at android.app.Activity.performCreate(Activity.java:8599) Line 529: 09-25 17:57:59.132 8188 8188 E AndroidRuntime: at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1458) Line 530: 09-25 17:57:59.132 8188 8188 E AndroidRuntime: at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:3848) Line 531: 09-25 17:57:59.132 8188 8188 E AndroidRuntime: ... 12 more
09-26
statcktrace:java.lang.RuntimeException: Unable to start activity ComponentInfo{com.yuantiku.collie/com.yuanfudao.tutor.infra.activity.LandReusingActivity}: kotlin.UninitializedPropertyAccessException: You have not created an AppConfig instance at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:4367) at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:4564) at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:126) at android.app.servertransaction.TransactionExecutor.executeNonLifecycleItem(TransactionExecutor.java:179) at android.app.servertransaction.TransactionExecutor.executeTransactionItems(TransactionExecutor.java:114) at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:86) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2903) at android.os.Handler.dispatchMessage(Handler.java:112) at android.os.Looper.loopOnce(Looper.java:288) at android.os.Looper.loop(Looper.java:393) at android.app.ActivityThread.main(ActivityThread.java:9535) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:600) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1005) Caused by: kotlin.UninitializedPropertyAccessException: You have not created an AppConfig instance at com.yuanfudao.android.appconfig.AppConfigFactory.a(SourceFile:20) at com.yuanfudao.android.common.helper.AppConfigWrapper$appConfigClient$2.invoke(SourceFile:2) at com.yuanfudao.android.common.helper.AppConfigWrapper$appConfigClient$2.invoke(SourceFile:1) at kotlin.SynchronizedLazyImpl.getValue(SourceFile:21) at com.yuanfudao.android.common.helper.AppConfigWrapper.a(Unknown Source:2) at com.yuanfudao.android.common.helper.AppConfigWrapper.d(SourceFile:8) at com.yuanfudao.android.common.helper.AppConfigWrapper.e(Unknown Source:5) at com.yuanfudao.tutor.infra.frog.preInstall.FrogPreInstallVendorHelper.b(SourceFile:7) at com.yuanfudao.tutor.infra.frog.preInstall.FrogPreInstallVendorHelper.d(SourceFile:1) at com.yuanfudao.tutor.infra.frog.preInstall.FrogPreInstallVendorHelper.c(Unknown Source:2) at com.yuanfudao.tutor.infra.frog.d.k(SourceFile:47) at com.yuanfudao.tutor.infra.frog.d.g(SourceFile:5) at com.yuanfudao.tutor.infra.frog.FrogConnectorFactory$FrogConnector.createFrogItem(SourceFile:1) at com.yuantiku.android.common.frog.logger.impl.FrogLogger.log(SourceFile:3) at com.yuanfudao.tutor.infra.frog.BaseFrogLogger.log(SourceFile:2) at com.yuanfudao.tutor.infra.frog.BaseFrogLogger.log(SourceFile:5) at com.yuanfudao.tutor.infra.frog.BaseFrogLogger.logEvent(Unknown Source:13) at com.yuanfudao.tutor.module.lessonhome.LessonHomeFragment.Ld(SourceFile:94) at com.yuanfudao.tutor.module.lessonhome.g9.run(Unknown Source:17) at org.aspectj.runtime.reflect.JoinPointImpl.proceed(SourceFile:3) at ve.a.b(SourceFile:20) at ve.c.d(Unknown Source:0) at ve.c.g(Unknown Source:0) at com.yuanfudao.tutor.module.lessonhome.LessonHomeFragment.onCreate(SourceFile:35) at androidx.fragment.app.Fragment.performCreate(SourceFile:22) at androidx.fragment.app.j0.e(SourceFile:51) at androidx.fragment.app.j0.m(SourceFile:121) at androidx.fragment.app.l0.t(SourceFile:31) at androidx.fragment.app.FragmentManager.a1(SourceFile:28) at androidx.fragment.app.FragmentManager.T(SourceFile:10) at androidx.fragment.app.FragmentManager.C(SourceFile:12) at androidx.fragment.app.v.e(Unknown Source:6) at androidx.fragment.app.FragmentActivity.onCreate(SourceFile:13) at com.yuanfudao.tutor.infra.activity.BaseActivity.onCreate(SourceFile:1) at com.yuanfudao.tutor.infra.activity.ReusingActivity.onCreate(Native Method) at com.yuanfudao.tutor.infra.activity.LandReusingActivity.onCreate(Native Method) at android.app.Activity.performCreate(Activity.java:9196) at android.app.Activity.performCreate(Activity.java:9168) at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1544) at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:4341) ... 13 more 什么异常
06-26
2025-07-31 18:31:004,tiny-log,[1753957864341], [main]app crash: java.lang.RuntimeException: Unable to resume activity {com.mercusys.halo/com.tplink.mercusys.component.dashboard.view.MainActivity}: java.lang.IllegalArgumentException: View=com.android.internal.policy.DecorView{fc3d391 V.ED..... R.....ID 0,0-1024,651}[SystemTimeMerActivity] not attached to window manager at android.app.ActivityThread.performResumeActivity(ActivityThread.java:5467) at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:5500) at android.app.servertransaction.ResumeActivityItem.execute(ResumeActivityItem.java:73) at android.app.servertransaction.ActivityTransactionItem.execute(ActivityTransactionItem.java:63) at android.app.servertransaction.TransactionExecutor.executeLifecycleItem(TransactionExecutor.java:169) at android.app.servertransaction.TransactionExecutor.executeTransactionItems(TransactionExecutor.java:101) at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:80) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2773) at android.os.Handler.dispatchMessage(Handler.java:109) at android.os.Looper.loopOnce(Looper.java:232) at android.os.Looper.loop(Looper.java:317) at android.app.ActivityThread.main(ActivityThread.java:8934) 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:911) Caused by: java.lang.IllegalArgumentException: View=com.android.internal.policy.DecorView{fc3d391 V.ED..... R.....ID 0,0-1024,651}[SystemTimeMerActivity] not attached to window manager at android.view.WindowManagerGlobal.findViewLocked(WindowManagerGlobal.java:587) at android.view.WindowManagerGlobal.removeView(WindowManagerGlobal.java:494) at android.view.WindowManagerImpl.removeViewImmediate(WindowManagerImpl.java:216) at android.app.Dialog.dismissDialog(Dialog.java:404) at android.app.Dialog.dismiss(Dialog.java:386) at androidx.appcompat.app.AppCompatDialog.dismiss(AppCompatDialog.java:1) at com.tplink.mercusys.component.core.lifecycle.r0.onUnregister(MeshNetworkConnectionObserver.java:21) at com.tplink.mercusys.base.lifecycle.ApplicationStateReceiverDelegate.registerMeshConnectObserver(ApplicationStateReceiverDelegate.java:15) at com.tplink.mercusys.base.lifecycle.ApplicationStateReceiverDelegate.registerMeshNetworkObserver(ApplicationStateReceiverDelegate.java:1) at com.tplink.mercusys.component.dashboard.viewmodel.BaseDashboardViewModel.x6(BaseDashboardViewModel.java:15) at com.tplink.mercusys.component.dashboard.view.NetworkTabFragment.Bg(NetworkTabFragment.java:89) at com.tplink.mercusys.component.dashboard.view.NetworkTabFragment.Ve(NetworkTabFragment.java:54) at com.tplink.apps.architecture.BaseMvvmFragment.onViewCreated(BaseMvvmFragment.kt:45) at androidx.fragment.app.Fragment.performViewCreated(Fragment.java:5) at androidx.fragment.app.FragmentStateManager.createView(FragmentStateManager.java:272) at androidx.fragment.app.FragmentStateManager.moveToExpectedState(FragmentStateManager.java:125) at androidx.fragment.app.FragmentManager.executeOpsTogether(FragmentManager.java:231) at androidx.fragment.app.FragmentManager.removeRedundantOperationsAndExecute(FragmentManager.java:82) at androidx.fragment.app.FragmentManager.execPendingActions(FragmentManager.java:22) at androidx.fragment.app.FragmentManager.dispatchStateChange(FragmentManager.java:39) at androidx.fragment.app.FragmentManager.dispatchViewCreated(FragmentManager.java:2) at androidx.fragment.app.Fragment.performViewCreated(Fragment.java:10) at androidx.fragment.app.FragmentStateManager.createView(FragmentStateManager.java:272) at androidx.fragment.app.FragmentStateManager.moveToExpectedState(FragmentStateManager.java:125) at androidx.fragment.app.FragmentManager.executeOpsTogether(FragmentManager.java:231) at androidx.fragment.app.FragmentManager.removeRedundantOperationsAndExecute(FragmentManager.java:82) at androidx.fragment.app.FragmentManager.execPendingActions(FragmentManager.java:22) at androidx.fragment.app.FragmentManager.dispatchStateChange(FragmentManager.java:39) at androidx.fragment.app.FragmentManager.dispatchResume(FragmentManager.java:12) at androidx.fragment.app.FragmentController.dispatchResume(FragmentController.java:5) at androidx.fragment.app.FragmentActivity.onResumeFragments(FragmentActivity.java:10) at androidx.fragment.app.FragmentActivity.onPostResume(FragmentActivity.java:4) at androidx.appcompat.app.AppCompatActivity.onPostResume(AppCompatActivity.java:1) at android.app.Activity.performResume(Activity.java:9266) at android.app.ActivityThread.performResumeActivity(ActivityThread.java:5457) ... 14 more 崩溃分析
08-01
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值