我认为您可以忘记检查null。
而是检查是否有数据,然后使用游标访问列:
Cursor cursor = fetchOption(0);if (cursor.moveToFirst()) // data? System.out.println(cursor.getString(cursor.getColumnIndex("title"));cursor.close(); // that's important too, otherwise you're gonna leak cursors
阅读Android教程可能也很有意义。记事本教程似乎很合适:http
:
//developer.android.com/guide/tutorials/notepad/index.html
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)