How to convert the keycode into char or string??
keycode
char
string
Here is the example code:
public boolean onK
Try this..
String s=""; @Override public boolean onKey(View v, int keyCode, KeyEvent event) { EditText t=(EditText)v; s=t.getText(); return false; }