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.

I have got a problem with my MIDlet application.

Whenever I execute this MIDlet the emulator shows the error: 'This application does not use the screen, and runs in background'.

So far I know that we have to give the reference of the screen to the instance of the Display, for that I did this:

  private Display display;

  display = Display.getDisplay(this);

Still I am facing the above error. please help me with this

share|improve this question
1  
Since pygorex1 answer wasn't enough, it is time to post the source code of your MIDlet, unless you can find the issue by simply looking at the HelloWorld code provided with the J2ME emulator. – QuickRecipesOnSymbianOS Dec 8 '09 at 11:17

2 Answers

Not only do you need to initialize the display you also need to set the current form:

mainForm= new Form("My Form");
display = Display.getDisplay(this);
display.setCurrent(mainForm);
share|improve this answer
i have done that thing still it appears that something is wrong... i did it.. – Shreyas Dec 8 '09 at 8:35

Check your commandAction parameter for Displayable's variable. If you give Displayable and Display the same variable, then you get the above error. Often, Display and Displayable are given "d" as the variable name which causes a problem.

share|improve this answer

Your Answer

 
discard

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

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