To make development easier, I want to be able to send textual commands to my android app (especially prior to having prior the UI completely fleshed out). Presumably in the emulator, but it would be great if it also worked on a device connected via USB. Of course, I could add an editText control to my app and type the commands in there, but would prefer not have deal with debug things cluttering up the UI and all the complications of that. I also would like to be able to paste text from computer clipboard, which sorta rules out EditText controls.
Is there any way to do this, say via any of the android-sdk/tools/ stuff? I would implement the command processor java class/method, but need some way to be able to actually feed it a string. I suppose I could do something that talks to the emulator via the file system or something, but would prefer not have to spend a lot of time doing this if there is something already available.