Skip to content

Instantly share code, notes, and snippets.

@alexwright
Created December 17, 2015 18:18
Show Gist options
  • Save alexwright/2ace6688f232c733e1b2 to your computer and use it in GitHub Desktop.
Save alexwright/2ace6688f232c733e1b2 to your computer and use it in GitHub Desktop.
Enumerate Intent Extras
Timber.d("Result_Ok");
Bundle extras = data.getExtras();
if (extras != null) {
for (String key : extras.keySet()) {
Timber.d("Extra %s:%s", key, extras.getString(key));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment