I'm trying to make a keyboard...
int code = 29; // Key code constant: 'A' key. Constant Value: 29 (0x0000001d)
KeyEvent k = new KeyEvent(KeyEvent.ACTION_UP, code);
InputConnection ic = getCurrentInputConnection();
ic.sendKeyEvent(k);
This code nicely send letter "A" to the application, as it is associated with the code "29", as from here http://developer.android.com/reference/ ... Event.html
But what should I do, if I want to use unicode characters, such as in here
http://en.wikipedia.org/wiki/List_of_Unicode_characters
Any ideas? Thanks!
Thanks!