That's not how maps work, they don't really have a...
# getting-started
k
That's not how maps work, they don't really have an order most of the time.
s
So I should use an expandable list, right? I found this link: https://bignerdranch.github.io/expandable-recycler-view/ what do you think? or if you got a better resource then please share.
k
That's an android layout component, not really a data structure. You could use a
LinkedHashMap<String, List<String>>
.