Skip to content

Instantly share code, notes, and snippets.

@rajankur
Created February 16, 2015 08:33
Show Gist options
  • Save rajankur/f34ae6b62bdc063daf51 to your computer and use it in GitHub Desktop.
Save rajankur/f34ae6b62bdc063daf51 to your computer and use it in GitHub Desktop.
Android: for each alternative
HashMap<String, HashMap> selects = new HashMap<String, HashMap>();
for(Entry<String, HashMap> entry : selects.entrySet()) {
String key = entry.getKey();
HashMap value = entry.getValue();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment