I have
Integer[] mainArray;
In one of my activity which was filled randomly with unique values.
Now I want this array to copied to next activity?
How can be achieved? I have seen that there seems to be no option to carry it with
Bundle b=new Bundle();
b.putIntArray("key", mainArray);
Intent i=new Intent(context, Class);
i.putExtras(b);