I have created custom keyboard and extends InputMethodService implements OnKeyboardActionListener.
when user tap on any key then i explicitly call KeyEvent like.
event = new KeyEvent(KeyEvent.ACTION_DOWN, KeyEvent.KEYCODE_A);
mTargetActivity.dispatchKeyEvent(event);
Now, It is working fine in google.com search text box. But when i change the setting
Google Setting and choose Never shows instant result and Save
Then my keyboard will not work. This issue is only faces in Nexus 7 android version 4.2
I am very glad if anyone can help on this.
Thanks