tags:

views:

577

answers:

2

Was wondering if there's any way to test Gestures (eg: Fling) on the Emulator.

I saw a project on google code that lets people simulate the accelerometer, but none of Gestures.

+1  A: 

Something similar has already been asked here:

http://stackoverflow.com/questions/937313/android-basic-gesture-detection

I can confirm that it works because I implemented an onFling listener following that example

Silvio Donnini
A: 

Any gestures that don't require multi-touch should work fine on the emulator. So for example Fling is going to work fine on the emulator, where pinch-zoom is not.

mbaird