I am new to Android. I wonder how to create an arraylist with multiple elements. I have a list like:
list1 = ["Circle", Color.WHITE, Color. BLACK, (20,20), (30,30), (40,40)];
This array contains String, int(the color) and coordinates. Is that available to put all of them into an arraylist. If so, how can I merge two lists together. Also, how can I get the value from it? I want to generate some list like above and do some code to merge(combine) them. Thanks!