So I\'ve always been under the assumption that you can\'t pass arrays between activities with extras. But I was just going through the Bundle class docs and saw putStr
You can pass any Serializable
object as extra, so I don't see why you could not pass String
array. There is a setExtra(String, Serializable)
method in the Intent
, that's what I use.
I think you must be able to pass string[] as a bundle in Android. Any specific reason you have for getting into such a conclusion?
Refer to this post
http://www.anddev.org/view-layout-resource-problems-f27/how-can-i-pass-multidimensional-string-array-two-activities-t9259.html