[android-developers] Re: Extremely weird Null Pointer exception. Please help.

2010-09-29 Thread Kakyoin
To point out the problem: How did mLunarThread object suddenly become null at line 352 of GameActivity.java ?? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To

[android-developers] Re: Extremely weird Null Pointer exception. Please help.

2010-09-29 Thread MarcoAndroid
First of all, pressing Back to exit the game doesn't necessarily mean you game really exits. Android keeps Activities around and will only really destroy it if it needs to. Secondly: nowhere in your app you are setting mLunarThread to null? If you are, then potentially that's causing it. Yes