I would like to make a task in my phone that should send keys to it.. In fact i will simulate a remote keyboard to my device. So, there is any way to acess send keys on the device? Thanks
Edit.
ultrashot from XDA Developers told me to use this:
keybd_event(<key code>, 0, KEYEVENTF_SILENT, 0);
keybd_event(<key code>, 0, KEYEVENTF_SILENT | KEYEVENTF_KEYUP, 0);
But i have no idea how to use this.. Its possible to use this with DLLImport?
