我的WHERE
条款在Lollipop工作,但在Kitkat没有返回任何内容
谁能告诉我为什么?
我的代码:
Cursor cursor;
String[] projections={Detabase_info.NewInfo.PAGE_ID,Detabase_info.NewInfo.TITLE};
String wherecause=Detabase_info.NewInfo.CATAGORY +"=?";
String[] wherearg={catagory};
cursor=db.query(Detabase_info.NewInfo.TABLE_NAME,projections,wherecause,wherearg,null,null,null);
Log.d("file", "=====>>>>" + cursor.getCount());
它在棒棒糖中起作用,但在Kitkat中不起作用 有谁知道为什么?