Listing all extras of an Intent
For debugging reasons I want to list all extras (and their values) of an Intent. Now, getting the keys isn't a problem Set<String> keys = intent.getExtras().keySet(); but getting the values ...