cursor使用错误(android.database.CursorIndexOutOfBoundsException: Index -1 requested)
在使用android.database.Cursor时调用getString(int)方法时报错android.database.CursorIndexOutOfBoundsException: Index -1 requested, with a size of 1
因为cursor的游标指向-1
解决方法:应该先调用cursor.moveToFirst();。