Can you tell me please how I can add an overlayItem object to an array? I tried in this way:
GeoPoint point = new GeoPoint((int)(Double.parseDouble(arrCoordonate[1])),(int)(Double.parseDouble(arrCoordonate[0])));
OverlayItem overlayItem = new OverlayItem(point, Double.parseDouble(arrCoordonate[1]) + "", Double.parseDouble(arrCoordonate[0]) +"");
List<OverlayItem> arrItem[] = overlayItem;
But I got an error:
Type mismatch: cannot convert from OverlayItem to List[]
You are mixing arrays and lists. If you don't have to use an array, using a list is easier, in which case you probably meant to write:
If you want to use an array you would write it like this - but you need to manage the size of the array yourself (which is why using a list as above is easier):