Skip to content

Tag: android-intent

Convert a Bundle to JSON

I’d like to convert the an Intent’s extras Bundle into a JSONObject so that I can pass it to/from JavaScript. Is there a quick or best way to do this conversion? It would be alright if not all possible Bundles will work. Answer You can use Bundle#keySet() to get a list of keys that a Bundle contai…