android Process 18869 exceeded cursor quota 100, will kill it

  cursor 没关,

  




Cursor cursor = null;
	try{
		cursor = ....;
		....
	}finally{
		if(cursor != null)
			cursor.close();
	}


你可能感兴趣的:(android Process 18869 exceeded cursor quota 100, will kill it)