코모스튜디오
정렬 하고 역순 정렬 하면 된다. Collections.sort(list, new Comparator() { @Override public int compare(T o1, T o2) { return 0; } }); Collections.reverse(list);