I din forespørgsel item
er streng, så skift
String strquery="select * from Articles where AS_name= "+item;
til
String strquery="select * from Articles where AS_name='" + item + "'";
Eller denne
Cursor cur=null;
cur = db.query("Articles", null, "AS_name" + "=?",
new String[] { item }, null, null, null, null);
i stedet for
Cursor cur=null;
String strquery="select * from Articles where AS_name= "+item;
cur=db.rawQuery(strquery,null);
Og ændre
strvalue=cur.getString(0);
til
strvalue=cur.getString(cur.getColumnIndex("Desc_art"));