码迷,mamicode.com
首页 > 移动开发 > 详细

Android 开发遇见的所有错误记录

时间:2014-12-13 23:19:57      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:android   io   使用   sp   on   bs   as   nbsp   记录   

1. FATAL EXCEPTION: AsyncTask #1 doInBackground()

原因:select语句拼写错误 

如:String select = "((" + Contacts.DISPLAY_NAME + "NOTNULL ) AND (" + Contacts.DISPLAY_NAME + " != ‘‘ ))";将会报错 FATAL EXCEPTION: AsyncTask #1 doInBackground()

修改为String select = "((" + Contacts.DISPLAY_NAME + " NOTNULL ) AND (" + Contacts.DISPLAY_NAME + " != ‘‘ ))";错误消失

解释: select语句中需要使用空格隔开 Contacts.DISPLAY_NAME等表达式和语句NOTNULL等。

Android 开发遇见的所有错误记录

标签:android   io   使用   sp   on   bs   as   nbsp   记录   

原文地址:http://www.cnblogs.com/vagrant1991/p/4161939.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!