passing a multidimensional array from one activity to another
问题 How can I pass a multidimensional array from one activity to another? 回答1: You can create a Serializable class which wraps the two-dimensional array, and pass it using Intent.putExtra(String name, Serializable value) 来源: https://stackoverflow.com/questions/4024015/passing-a-multidimensional-array-from-one-activity-to-another