croogie
9/12/2013 - 10:51 PM

Helpful when you don't know how many are extras in received intent From http://stackoverflow.com/questions/5968896/listing-all-extras-of-an-

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()));
}