We have a ListView with dynamic content, and we can only click on the text, not the whole element (this means that short text means a small touch area)
Our ListView:
ListView lv = getListView(); lv.setTextFilterEnabled(true); lv.setOnItemClickListener(this);
What do we need to do to make the whole element clickable, and not just its text
source share