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!