Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是android编程的新手...
我想制作一个可以将复选框绑定到数据库的应用程序...
我的意思是根据复选框的状态(或选中的复选框的数量),应该从数据库中检索值
在 SQLite 中没有布尔值,但它们表示为 1 表示真,0 表示假。如果您尝试搜索这些值,您可以确定条件是真还是假;
int booleanRow = cursor.getColumnIndexOrThrow(FIELD); boolean isChecked = (cursor.getInt(booleanRow) == 1)? true : false;