Trong truy vấn của bạn item
là chuỗi, vì vậy hãy thay đổi
String strquery="select * from Articles where AS_name= "+item;
đến
String strquery="select * from Articles where AS_name='" + item + "'";
Hoặc điều này
Cursor cur=null;
cur = db.query("Articles", null, "AS_name" + "=?",
new String[] { item }, null, null, null, null);
thay vì
Cursor cur=null;
String strquery="select * from Articles where AS_name= "+item;
cur=db.rawQuery(strquery,null);
Và thay đổi
strvalue=cur.getString(0);
đến
strvalue=cur.getString(cur.getColumnIndex("Desc_art"));