public boolean onKeyDown(int keyCode, KeyEvent event)
{
if(this.keyHandler != null) this.keyHandler.onKeyDown(keyCode, event);
return super.onKeyDown(keyCode, event);
}
This is a method inside my OpenGL Surface view. When the keyboard is shown, ALL key presses cause this overriden callback function to be called. I have tested on my Asus TF101 (Android 4.0.4) and everything worked, however on my LG nexus 4 the backspace (KEYCODE_DEL) key press does not do anything!
Is there something I am missing?
EDIT: I have also tried to override dispatchKeyEvent(KeyEvent event) in my activity class but still the backspace key is not caught.
You can try to catch back key and use this method which is triggered when back is pressed. http://developer.android.com/reference/android/app/Activity.html#onBackPressed()
You can use
in your method or you can override it to do other things when clicked