I have a list of key-value pairs in a Bundle
params.keySet()
which needs to be sorted alphabetically on the key column.
I tried the long way of extracting the key-value pairs and sorting them using
Collections.sort(list)
and putting it back inside a new Bundle.
But when I call params.keySet(). They come to un-sorted again. Any ideas. Is their an easy way?