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.

In my Google maps I try to add compass: first I declare:

MyLocationOverlay compass = null;

then in code I implemented 2 methods

@Override
protected void onResume() {
    super.onResume();
    //compass.enableCompass();
    lm.requestLocationUpdates(towers, 500, 1, this);
}

@Override
protected void onPause() {
    super.onPause();
    //compass.disableCompass();
    lm.removeUpdates(this);
}

I have to comment enableCompass & disableCompass, otherwise apps won't work. Any suggestion.

share|improve this question
"Apps won't work" is not specific. Does it not toggle the compass? Does it explode? Does it reset the device? Does it crash? (If it crashes, provide the error logs.) – Eric Oct 15 '12 at 20:31

closed as not a real question by Jarrod Roberson, Eric, Chathuranga Chandrasekara, hims056, hjpotter92 Oct 16 '12 at 7:57

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Are you instantiating compass? It looks like it's set to null.

Have a look at this sample

share|improve this answer
Yes, its instantiating, here is code: – dinko Oct 16 '12 at 13:44
Of course I have instating compass but and is not set to null. – dinko Oct 16 '12 at 16:22
Well you haven't provided code for where that is happening. You need to be more specific about your problem. Ideally, you should provide an error message and some of the code around what lines are throwing the error. These are the reasons why you're getting so many down votes. – raydowe Oct 18 '12 at 16:14

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