Helpful when you don't know how many are extras in received intent From http://stackoverflow.com/questions/5968896/listing-all-extras-of-an-intent
for (String key : bundle.keySet()) {
Object value = bundle.get(key);
Log.d(TAG, String.format("%s %s (%s)", key,
value.toString(), value.getClass().getName()));
}