I\'ve heard of using a two dimensional array like this :
String[][] strArr;
But is there any way of doing this with a list?
Maybe s
You can create a list,
ArrayList outerArr = new ArrayList();
and add other lists to it like so:
String[] myString1= {"hey","hey","hey","hey"};
outerArr .add(myString1);
String[] myString2= {"you","you","you","you"};
outerArr .add(myString2);
Now you can use the double loop below to show everything inside all lists
for(int i=0;i