V dotazu item
je řetězec, tak změňte
String strquery="select * from Articles where AS_name= "+item;
do
String strquery="select * from Articles where AS_name='" + item + "'";
Nebo toto
Cursor cur=null;
cur = db.query("Articles", null, "AS_name" + "=?",
new String[] { item }, null, null, null, null);
místo
Cursor cur=null;
String strquery="select * from Articles where AS_name= "+item;
cur=db.rawQuery(strquery,null);
A změňte
strvalue=cur.getString(0);
do
strvalue=cur.getString(cur.getColumnIndex("Desc_art"));