Can I assign the Exit Command to the # key in an Lwuit Application? When I press the key #, the Exit command should be called automatically and exit the application.

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

You should listen for a KeyPress or keyReleased event on the form with the keycode for # and exitApplication when the # key is pressed.

protected void keyPressed(int key)
{
    System.out.println("Key Pressed");

    if(key==52) //change 52 to match keyCode for # key 
    {
      Display.getInstance().exitApplication();
    }
}
link|improve this answer
Can I Call A Command Like OPEN,CLOSE .. – Shankar Jan 13 at 4:39
What do you mean by calling a command like open, close? You can execute any code you want after getting the keyPressed/keyReleased event in the code braces {}. – Ajibola Jan 14 at 1:12
How can i call exit command inside of Keypressed event block – Shankar Jan 21 at 5:09
feedback

Your Answer

 
or
required, but never shown

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