Skip to main content

How to Disable Back Button (Escape Button) Programmatically in Blackberry

protected boolean keyChar(char character, int status, int time) {
if (Characters.ESCAPE == character) {
return true;
}
return super.keyChar(character, status, time);
}

Comments

artikel said…
hello can you please tell me what excatly buck button do in programmatically? is it call popscreen or not?

thank you