I have a ListView with each column consisting of three TextViews (for formatting reasons).
The problem I have is when the onItemClick method is called I need to return the value for all three TextViews, which I cannot achieve using:
((TextView)view.).getText().toString();
In the end, I found this worked perfectly: