私はこれを数時間試していますが、逆の順序でハッシュマップの反復を達成するための最良のアプローチを見つけていません。これは私が持っているハッシュマップです。
Map<Integer, List<String>> map = new HashMap<Integer, List<String>>();
for(Integer key : map.keySet()) {
List<String> value = map.get(key);
List<Map<String,?>> security = new LinkedList<Map<String,?>>();
for(int ixy = 0; ixy < value.size()-1; ixy++){
security.add(createItem(value.get(ixy), value.get(ixy+1)));
}
adapter.addSection(Integer.toString(key), new SimpleAdapter(getApplicationContext(), security, R.layout.list_complex, new String[] { ITEM_TITLE, ITEM_CAPTION }, new int[] { R.id.list_complex_title, R.id.list_complex_caption }));
}
TreeMapの例も見ましたが、
Map<Integer, List<String>> sortedMap = new TreeMap<Integer, List<String>>(map);
しかし、ツリーマップも昇順で表示されます。私が欲しいのは降順です。