I am catching keyboard events/presses using the onKey method:
public boolean onKey(View arg0, int arg1, KeyEvent arg2) {
//do something
return false;
}
This fires off just fine for physical keyboard presses but it does not fire on virtual keyboard presses. Is there an event handler to handle virtual keyboard presses?
If it’s an EditText, see if you can use a TextChangedListener instead.