I have a bidimensional String array that has mass data (sizes are [40][8]
to be exact) in my Activity A. I want to pass the whole array to Activity B. I've tried this solution: Passing string array between android activities
but the problem is it is creating an array inside. I want to pass my original bidimensional array that contains [40][8]
values. Can I do that?
EDIT:
my String array is a 2 dimensional array.