在用SQLiteDatabase的时候如果碰到说database或者cursor没有关闭,可以在使用完之后加上:
if (!cursor.isClosed()) { cursor.close(); } if(db!= null) { db.close();//db是数据库对象 }