आपकी क्वेरी में item
स्ट्रिंग है, तो बदलें
String strquery="select * from Articles where AS_name= "+item;
करने के लिए
String strquery="select * from Articles where AS_name='" + item + "'";
या यह
Cursor cur=null;
cur = db.query("Articles", null, "AS_name" + "=?",
new String[] { item }, null, null, null, null);
के बजाय
Cursor cur=null;
String strquery="select * from Articles where AS_name= "+item;
cur=db.rawQuery(strquery,null);
और बदलें
strvalue=cur.getString(0);
करने के लिए
strvalue=cur.getString(cur.getColumnIndex("Desc_art"));