Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

For my recent game i have about 15 LinkedList i am iterating through to check for collisions.

I have about 10 to 12 methods that iterate over each LinkedList like below:

Iterator<Tile> triangleIT = circleTiles.iterator();

while (triangleIT.hasNext()) {
    Tile square_sprite = triangleIT.next();
    //Start checking our collision for this method.

I have a timer that calls the checkCollisions() about every .1 second. Inside checkCollisions() is the other methods that iterate through the LinkedList and checks for the collisions.

Recently, i have ran into issues where after playing a level of the game for a while then exiting the game, the homescreen, and app pages "flicker" when swiping between them. Almost like the device is out of memory or still trying to process a lot of information.

The funny thing is, when i open another app and the exit the app, the flickering stops. Very random, and ive never seen this before out of all 2 of my games.

It seems to only be happening on Galaxy s3. Im sure it will happen on other devices when tested enough.

With all of this said, is it dangerous what i stated i am doing above? Has anyone ever seen issues like this when developing an app or game?

share|improve this question
Is there anything that makes you think that it's specifically your collision detection that causes this? If you have a logic thread running, do you stop/pause the thread in onPause()? – Geobits Feb 19 at 23:20
Well during onPause() i call engine.Pause(); which pauses the entire engine. – Coder_Moler10345 Feb 19 at 23:23

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.