谁能解释我的logcat?

时间:2014-07-11 08:20:24

标签: java android

这是我的logcat,当我运行我的应用程序来检测wifi并查看它是否已连接,但我只是不知道它是否正常工作。

07-11 03:17:24.890: I/Choreographer(829): Skipped 72 frames! The application may be doing too much work on its main thread. 07-11 03:17:25.460: D/gralloc_goldfish(829): Emulator without GPU emulation detected. 07-11 03:17:46.790: I/Choreographer(829): Skipped 38 frames! The application may be doing too much work on its main thread. 07-11 03:17:46.980: I/Choreographer(829): Skipped 58 frames! The application may be doing too much work on its main thread. 07-11 03:17:54.920: D/WiFiChangeBroadcastReceiver(829): WiFi Status Changed 07-11 03:17:55.040: D/WiFiChangeBroadcastReceiver(829): WiFi Status Changed 07-11 03:18:38.240: I/Choreographer(829): Skipped 78 frames! The application may be doing too much work on its main thread. 07-11 03:18:40.230: I/Choreographer(829): Skipped 35 frames! The application may be doing too much work on its main thread. 07-11 03:18:40.930: I/Choreographer(829): Skipped 131 frames! The application may be doing too much work on its main thread. 07-11 03:22:24.850: I/Choreographer(829): Skipped 124 frames! The application may be doing too much work on its main thread. 07-11 03:22:25.570: I/Choreographer(829): Skipped 338 frames! The application may be doing too much work on its main thread. 07-11 03:22:25.680: I/Choreographer(829): Skipped 72 frames! The application may be doing too much work on its main thread. 07-11 03:22:40.180: I/Choreographer(829): Skipped 200 frames! The application may be doing too much work on its main thread. 07-11 03:22:40.430: I/Choreographer(829): Skipped 86 frames! The application may be doing too much work on its main thread. 07-11 03:22:43.610: I/Choreographer(829): Skipped 77 frames! The application may be doing too much work on its main thread. 07-11 03:22:44.110: I/Choreographer(829): Skipped 104 frames! The application may be doing too much work on its main thread. 07-11 03:22:44.210: I/Choreographer(829): Skipped 45 frames! The application may be doing too much work on its main thread. 07-11 03:25:50.470: I/Choreographer(829): Skipped 189 frames! The application may be doing too much work on its main thread. 07-11 03:25:50.520: I/Choreographer(829): Skipped 59 frames! The application may be doing too much work on its main thread. 07-11 03:25:51.430: I/Choreographer(829): Skipped 57 frames! The application may be doing too much work on its main thread. 07-11 03:27:17.430: I/Choreographer(829): Skipped 103 frames! The application may be doing too much work on its main thread. 07-11 03:27:18.090: I/Choreographer(829): Skipped 278 frames! The application may be doing too much work on its main thread. 07-11 03:27:18.350: I/Choreographer(829): Skipped 30 frames! The application may be doing too much work on its main thread. 07-11 03:27:20.460: I/Choreographer(829): Skipped 72 frames! The application may be doing too much work on its main thread. 07-11 03:27:20.560: I/Choreographer(829): Skipped 82 frames! The application may be doing too much work on its main thread. 07-11 03:27:22.160: I/Choreographer(829): Skipped 72 frames! The application may be doing too much work on its main thread.

此应用是否检测到我的IP地址?

1 个答案:

答案 0 :(得分:1)

我们可以从您的logcat中了解到的唯一一件事就是您正在使用模拟器;

  

未检测到GPU仿真的仿真器。

在模拟器中运行app时,跳过的帧是非常常见的警告,当我使用模拟器时,我不会考虑太多。但如果它在设备中显示,那么你肯定需要修复它。警告应用程序可能在其主线程上做了太多工作。即使我们在模拟器中显示像 progressdialog 这样的简单用户界面也会显示。

相关问题