Skip to content

Instantly share code, notes, and snippets.

@hilfritz
Created November 16, 2017 03:01
Show Gist options
  • Save hilfritz/80449f31db05c3e393e4da84076feb24 to your computer and use it in GitHub Desktop.
Save hilfritz/80449f31db05c3e393e4da84076feb24 to your computer and use it in GitHub Desktop.
Java: convert Map to Bundle
public Bundle convertMapToBundle(Map<String, String> data){
Bundle bundle = new Bundle();
for (Map.Entry<String, String> entry : data.entrySet()) {
bundle.putString(entry.getKey(), entry.getValue());
}
return bundle;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment