What I am trying to accomplish here is to remove a "blossom" from the Vector whenever a collision is detected. However, I keep getting a ConcurrentModificationError. It messes up when I try to remove the blossom from the Vector. I have tried doing it many ways. At one point when it was detected that the blossom should be removed, I saved its position in the Vector and then tried to remove it when the next position in the list was being looked at. I think this is the only method that you need to see. Can anybody see what I can do to fix this??

private synchronized void DrawBlossoms(Canvas c) // method to draw flowers on screen and test for collision
{
    Canvas canvas = c;
    for(Blossom blossom: blossomVector)
    {
                blossom.Draw(canvas);
                if (blossom.hit(box_x,box_y, box_x + boxWidth, box_y + boxHeight, blossomVector) == true)
                {
                    Log.v(TAG, "REMOVE THIS!");
                    //blossomVector.remove(blossom);

                }
    }
}
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

The solution is to use an iterator and synchronize on the Vector.

synchronize(blossomVector)  
{  
    Iterator dataIterator = blossomVector.iterator();  
    while (dataIterator.hasNext())  
    {  
        //... do your stuff here and use dataIterator.remove()

    }  
}  
link|improve this answer
I must be implementing this wrong, because whenever I try to run this my screen turns black. Inside the while loops, do I still do a foreach on my blossomVector? – OhMisterRabbit May 1 '11 at 20:11
No. The intent was that you do your while loop will replace the for loop. Just grab the next Blossom object using iterator.next(), draw it .. if there is a hit, remove it using iterator.remove – Kal May 2 '11 at 2:18
Thank you so much! It works! The only weird thing is that it sort of draws two of the object @.@ It removes them both from the screen. It is like drawing one on top of the other, with only a little of the one blossom from behind showing. Odd. – OhMisterRabbit May 2 '11 at 23:10
feedback

Your Answer

 
or
required, but never shown

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