Android - Any way to test gestures on an emulator?

I wonder if there is a way to check Gestures (for example: Fling) in the emulator.

I saw a project in Google code that allows people to simulate an accelerometer, but not a single gesture.

+3
source share
2 answers

Something similar has already been asked here:

Gesture detection while moving around the grid

I can confirm that it works because I implemented the onFling listener after this example

+2
source

Any gestures that do not require multi-touch should work fine on the emulator. So, for example, Fling will work fine on an emulator where there was no scaling.

+1
source

Source: https://habr.com/ru/post/1730211/


All Articles