Last active
January 23, 2017 01:35
-
-
Save NunciosChums/832047ec0ad46debc2387267422f9f88 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// http://stackoverflow.com/a/15074150/1025379 | |
Bundle bundle = getIntent().getExtras(); | |
if (bundle != null) { | |
for (String key : bundle.keySet()) { | |
Object value = bundle.get(key); | |
Log.w("###", String.format("%s: %s (%s)", key, value.toString(), value.getClass().getName())); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment