First of all sorry if my English bad, its not my first language..
I'm working on and android app project, that needed to sort ArrayList of an object..so I made this method to deal with that...
Lets say that I have an object of Restaurant that will contain this data:
private String name;
private float distance ;
And I sort it using the value of the variable distance from lowest to highest:
public void sort(RArrayList<RestaurantData> datas) {
    RestaurantData tmp = new RestaurantData();
    int swapped;
    boolean b = true;
    while (b) {
        swapped = 0;
        for (int i = 0; i < datas.size()-1; i++) {
            if (datas.get(i).getDistance() > datas.get(i+1).getDistance()) {
                tmp = datas.get(i);
                datas.set(i, datas.get(i+1));
                datas.set(i+1, tmp);
                swapped = 1;
                System.err.println("Swapped happening");
            }
        }   
        if (swapped == 0) {
            System.err.println("Swapped end");
            break;
        }
    }
But when i try the program..the result of an ArrayList is still random, is there any problem with my logic to sort the ArrayList of an object..
Please Help...Thankyou..
 
    