Reputation: 1141
I have an android running on my dev board. How can i simulate the mouse pointer in that?
I will have an application which sends the (x,y) coordinates to a running deamon. It should be able simulate a tap at the corresponding point on the touch screen.
Can anyone suggest the ideas and feasibility of this ?
Upvotes: 3
Views: 3431
Reputation: 172
You can emulate such events using monkey tool
it supports running in daemon mode accepting commands, see details and samples in android repository
Upvotes: 1