To get a KeyEvent code I use KeyEvent like this:
int code = KeyEvent.KEYCODE_A;
How I can get 'á' key code?
I try:
KeyEvent.getDeadChar('´', 'a');
But not works, this function returns acii code not KeyCode.
To get a KeyEvent code I use KeyEvent like this:
int code = KeyEvent.KEYCODE_A;
How I can get 'á' key code?
I try:
KeyEvent.getDeadChar('´', 'a');
But not works, this function returns acii code not KeyCode.