google maps - Android OnItemCLickListener not working in listview -
i new android programming.i developing app in when user clicks on listview item should go google maps app , display pin address on map. when click on item nothing happens. following display activity. public class displayactivity extends activity implements onitemclicklistener{ listview listview; private string tag_name; public list<nameaddress> nameaddresslist; @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_display); listview = (listview) findviewbyid(r.id.list); intent intent = getintent(); if(intent!= null) { tag_name = intent.getstringextra("dashitemname"); settitle("list of " +tag_name+ " addresses"); } nameaddresslist = null; try { xmldomparserhandler parser = new xmldomparserhandler(tag_name); nameaddresslist = parser.parsexml(getassets().open("data.xml")); arr...