android application failing upon user scrolling - no 'obvious' error

前端 未结 3 1060
旧巷少年郎
旧巷少年郎 2021-01-07 14:09

I\'m having a strange problem with Android 1.6

I have an application that has a ListView (found in Activity #1).

The user can click on one of the rows in t

3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-07 14:21

    you should report native crashes like this at http://code.google.com/p/android/issues/entry (choose the "developer bug report" template). include exactly what you included here, and if you can, please include your app (or the active ingredient thereof) so we can reproduce the crash to find the problem and verify the fix.

    as for the strange stack trace, it's because this is a crash in native code. google developers have the map from those "pc" (program counter) addresses to symbols, so we can work out where in the native code this happened. (Typeface_unref, as it happens, so this seems unlikely to be Droid-specific.)

    [the "zombie" referred to is the crashed process. debuggerd is just telling you that it's not leaving it around for debugging --- it's clearing it away on the assumption you're a user and just want to get on with your life.]

    this particular bug has already been fixed; the fix should be in the first release after 2.1.

提交回复
热议问题