View paste
(3 more lines)
I would like to pass a JSON String in an intent from one Activity to another.
The JSON string can be either a string representation of a JSONOBJECT or a string representation of a JSONARRAY
I have the following questions:
1. Is there a difference between the string in the intent as an extra or putting it into a Bundle then putting the Bundle in the Intent?
2. Is there a length limit on putting strings in intents/bundles?
3. Will any of the special characters of the JSON format interfere with it being passed correctly?
...