Reputation: 235
I'm developing an android application which uses w softkeyboard
What I want to do is to programmatically press a key on the keyboard
How can this be implemented?
Upvotes: 1
Views: 4380
Reputation: 6071
Activity.dispatchKeyEvent(KeyEvent)
is your friend in this case. :)
Upvotes: 3