android - Handling imageButton clicks inside a custom listview -
i have listview custom adapter. custom row in listview containts 2 imagebuttons need handle when click on it. doesn't work want, because when start app , click on imagebutton nothing happens, if first click on row , on imagebutton, click being handled. tried few solutions helped other users here so, nobody had exact same problem me gets handled after row click. favoriteactivity public class favoriteactivity extends activity { private list<favorite> favoriteitem = new arraylist<favorite>(); viewholder holder = new viewholder(); @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.favorite); populatefavoritelist(); populatelistview(); registerclickcallback(); } private void populatefavoritelist() { favoriteitem.add(new favorite(r.drawable.icon_camera, "item 1")); favoriteitem.add(new favorite(r.drawa...