I have lots of boolean arrays and i want to keep them in an array list so that i can access them through this array list .
public static boolean one[] = { false, false, false,false,false,false,false,false,false,false,false
};
public static boolean two[] = { false, false, false,false,false,false,false,false,false,false,false
};
ArrayList myImage; // for normal object'
when i try ArrayList myBooleans; // its not working . and so on
I want an array list that will hold all this arrays.
Any help will be appreciated.