Is there an easy way to print the contents of a Bundle to Logcat if you can\'t remember the names of all the keys (even being able to print just the key names w
Bundle
Java 8 stream one liner:
bundle.keySet().stream().forEach(k -> Log.d(TAG, k + " = " + bundle.get(k)));