如何在 Android 上的SQLite数据库中获取布尔字段的值?
我通常使用getString(),getInt()等来获取我的字段的值,但似乎没有getBoolean()方法。
getString()
getInt()
getBoolean()
这是:
boolean value = cursor.getInt(boolean_column_index) > 0;