在开发Android应用程序时收到这样的警告

时间:2013-02-26 05:31:14

标签: android

当我在模拟器中执行我的android代码时,我的日志cat显示如下错误

02-26 05:23:49.800: W/Trace(799): Unexpected value from nativeGetEnabledTags: 0
02-26 05:23:49.800: W/Trace(799): Unexpected value from nativeGetEnabledTags: 0
02-26 05:23:49.800: W/Trace(799): Unexpected value from nativeGetEnabledTags: 0
02-26 05:23:49.800: W/Trace(799): Unexpected value from nativeGetEnabledTags: 0
02-26 05:23:49.800: W/Trace(799): Unexpected value from nativeGetEnabledTags: 0

由于这个iam没有遇到任何问题,但我不知道为什么会这样... 直到我在模拟器中关闭应用程序才会停止。关闭应用程序后,我的日志猫正在给出这个消息..

02-26 05:26:33.859: I/Choreographer(799): Skipped 55 frames!  The application may be doing too much work on its main thread.

我没有做任何大型应用..但对于基本的你好世界也面临这个问题。 请帮帮我。

1 个答案:

答案 0 :(得分:0)

这是api级别17中引入的模拟器系统的错误。

因此,在修复错误之前,您可以执行以下任何操作

  1. 使用api 16或更低版本的模拟器
  2. 或者如果你需要带有api 17的模拟器,你可以在logcat中使用以下过滤器

    ^(?!(nativeGetEnabledTags))。的$

  3. 它不会损害您的任何任务,只会是垃圾邮件。

    您可以在同一问题here

    中找到类似的答案

    此处报告的问题为https://code.google.com/p/android/issues/detail?id=39723