How can I obtain the value of a boolean field in an SQLite database on Android?
I usually use getString(), getInt(), etc. to get the values
getString()
getInt()
boolean b = (cursor.getInt(cursor.getColumnIndex("item")) != 0);