I'm getting this error while working on map (Drawing line on map using GetDirection API). I have used CopyOnWriteArrayList still it sometimes throws ConcurrentModification exception.

CopyOnWriteArrayList<GeoPoint> pointArray;
pointArray =  parcer.getDirectionParcer(jsonObject);

GeoPoint gp1;
GeoPoint gp2 = src;
Iterator<GeoPoint> it1 = pointArray.iterator();

//for(int i=0;i<pointArray.size();i++) // the last one would be crash

Utility.debugger("2");
while (it1.hasNext()) {
    try {
        gp1 = gp2;
        gp2 = (GeoPoint) it1.next();
        mMapView.getOverlays().add(new MyOverLay(gp1,gp2,2,color));
    } catch (ConcurrentModificationException e) {
        Utility.debugger("exception");
        e.printStackTrace();
    }
}

It gives error in it1.next().

link|improve this question

45% accept rate
feedback

1 Answer

up vote 0 down vote accepted

Are you calling this code in a non UI thread?

The ConcurrentModificationException may be due to adding overlays in an Non UI thread, while the UI thread is trying to access the overlays. You can only modify overlays on the UI thread.

link|improve this answer
Ok I have kept everything on UI thread . No error till now. – user983364 Nov 14 '11 at 6:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.