views:

101

answers:

1

Hello!

I have an array of integers in the activity A:

int array[] = {1,2,3};

And i want to send that variable to the activity B, so i create a new intent and use the putExtra method:

Intent i = new Intent(A.this, B.class);
i.putExtra("numbers", array);
startActivity(i);

In the activity B i get the info:

Bundle extras = getIntent().getExtras();
int arrayB = extras.getInt("numbers");

But this is not really sending the array, i just get the value '0' on the arrayB. I've been looking for some examples but i didnt found anything so... Can anybody help me here? :D

Thanxs!

+2  A: 

You are setting the extra with an array. You are then trying to get a single int.

Your code should be:

int[] arrayB = extras.getIntArray("numbers");
mbaird
Ouch! I was focused on the putExtra and getExtras syntax that i didnt realize the misstake was so obvious :D Thank you!
Kitinz