I am making use of the following ArrayList: ArrayList<float[]> notes = new ArrayList<float[]>();
I managed to perform the sorting on the first element of the float[] array without any problem. Now I am also trying to sort the ArrayList on using a second attributes. However I cannot manage to sort the list again on the second element of the float arrays ie. float[1]
.
Any hints?