当前位置: 代码迷 >> Android >> threadid=一: thread exiting with uncaught exception (group=0x416a1498)
  详细解决方案

threadid=一: thread exiting with uncaught exception (group=0x416a1498)

热度:96   发布时间:2016-04-28 06:10:26.0
threadid=1: thread exiting with uncaught exception (group=0x416a1498)
求大神帮忙看下这是怎么回事?谢谢

------解决方案--------------------
Cursor 操作时,记得try catch finally
把下面这段放在 catch 和 finally 里。

if(cursor!=null){
cursor.close();
cursor = null;
}
  相关解决方案