クエリ内の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"));