Androidでは、Excelの並べ替え機能と同様に、優先度に基づいて1行の複数の値をどのように並べ替えますか?
Map<String,String,Float,Integer> shoes; // Style, Color, Price, Quantity
shoes.put("Boots","Red",15.50,5);
shoes.put("Boots","Green",17.50,2);
shoes.put("Skate","Red",12.25,6);
shoes.put("Skate","Blue",13.05,9);
shoes.Sort(1,0,2,3); // sorts by color, then by style
shoes.Sort(2,0,1,3); // sorts by price, then by style