I have an ArrayList in the form ArrayList<String[]> table_list = new ArrayList<String[]>();
So for example table_list.get(0)
would look like {"Title", "Yes", "No"}
.
Now let's say I have a lot of titles and want tot sort those titles in my table alphabetically, what do I do? Collections.sort()
does not seem to work.
Thanks.