android - onclicklistener for inflated table row -
this code list being generated appointments. have inflated tablerows dynamically , added onclicklisteners them somehow it's not getting detected..
tablerow tr1 = (tablerow)inflater.inflate(r.layout.appointment_list, null); tr1.setlayoutparams(new layoutparams(layoutparams.fill_parent,layoutparams.wrap_content)); textview name=(textview) tr1.findviewbyid(r.id.appointment_name); textview time=(textview) tr1.findviewbyid(r.id.appointment_time); date_today.settime(cur.getlong(3)); string s=""+date_today.gethours()+":"+date_today.getminutes(); name.settext(cursorname.getstring(1)); time.settext(s); tr1.setclickable(true); tr1.setonclicklistener(this); table.addview(tr1, new tablelayout.layoutparams(layoutparams.fill_parent,layoutparams.wrap_content));
Comments
Post a Comment