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

link|improve this question

66% accept rate
feedback

3 Answers

up vote 3 down vote accepted

Convert JsonArray to String then attach it to Intent ans send it.

    JSONObject jObject = new JSONObject("Your Json Response");

    Intent obj_intent = new Intent(Main.this, Main1.class);
    Bundle b = new Bundle();                
    b.putString("Array",jObject4.toString());
    obj_intent.putExtras(b);

Where jObject4 is JSON Object.

Get in next Page :

        Intent b = getIntent().getExtras();
        String Array=b.getString("Array");
link|improve this answer
+1 buddy nice one.... – Lalit Poptani Oct 8 '11 at 6:26
feedback
Intent intent = new Intent(your_activity.this, new_activity.class);
intent.putExtra("jsonArray", mJsonArray.toString());
startActivity(intent);

In the next Activity

        Intent intent = getIntent();
        String jsonArray = intent.getStringExtra("jsonArray");

        try {
            JSONArray array = new JSONArray(jsonArray);
            System.out.println(array.toString(2));
        } catch (JSONException e) {
            e.printStackTrace();
        }
link|improve this answer
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.