I am making an app in which I want o pass a json array between 2 activities .how to pass json arry from one activity to another through intents in android. can anybody help me over this?? thanks
|
feedback
|
|
Convert JsonArray to String then attach it to Intent ans send it.
Where jObject4 is JSON Object. Get in next Page :
| ||||
|
feedback
|
In the next Activity
| |||
|
feedback
|
|
Passing json array in intent directly it is not possible you have implement parceable interface and override the neccesory methods.You have also study how parcels work. | |||
|
feedback
|