In Android ListView it has OnItemClickListener() which responds to a ROW I clicked. But what if my ListView has multicolumn and I want to have an event that responds to a column in a row?
In Android ListView it has OnItemClickListener() which responds to a ROW I clicked. But
Share
In your getView(…) of your listadapter simply use setOnClickListener() on what makes up the columns in you list row – ie as the row was a normal layout outside the listview.