How can I detect a shake event with android? How can I detect the shake direction?
I want to change the image in an imageview when shaking occurs.
|
How can I detect a shake event with android? How can I detect the shake direction? I want to change the image in an imageview when shaking occurs. |
|||||||
|
|
From the code point of view, you need to implement the SensorListener:
You will need to acquire a SensorManager:
And register this sensor with desired flags:
In your onSensorChange() method, you determine whether itβs a shake or not:
The shake threshold is defined as:
There are some other methods too, to detect shake motion. look at this link.(If that link does not work or link is dead, look at this web archive.). Thanks. |
|||||||||
|
|
Google helps a lot. You also need to accept answers in order to get better help. |
|||||
|