I want to access a keyboard via Bluetooth.
For example :
Two devices connect each other via Bluetooth if I open keyboard in the first device, and I want access that keyboard in another device in any edittext.
So how can I access that keyboard in another device via bluetooth in android?
To detect a EditText keyboard popping up :
To capture a key event
To inject keypresses in your Activity simply call
onKeyDown()with the appropriate KeyEventTo open up a keyboard
and close it :
If you are not interested in popping up the keyboard on the other phone, simply ignore this section. Use the good old :
setText()Now how you form the chatting protocol by which Bluetooth sends these key events is up to you.Hint: RemoteDroid used OscMessages