I've read a java tutorial explaining an "array of arrays" with something similar to coordinates. For instance,
mainArray [0] [0] = "arrayA";
mainArray [0] [1] = 1;
mainArray [0] [2] = 2;
mainArray [1] [0] = "arrayB";
mainArray [1] [1] = 1;
Is it plausable to populate a listview using this type of array in android (using the first set of numbers and not the subset)? I haven't had the chance to try it yet.