Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
2  
Have you even tried solving it by yourself? Googling the title of your post returns loads of results. – redent84 Mar 11 '11 at 10:14
I googled, and ended up with this question as the top result... – zmbq Aug 24 '12 at 22:13

2 Answers

From the code point of view, you need to implement the SensorListener:

public class ShakeActivity extends Activity implements SensorListener

You will need to acquire a SensorManager:

sensorMgr = (SensorManager) getSystemService(SENSOR_SERVICE);

And register this sensor with desired flags:

ensorMgr.registerListener(this,
SensorManager.SENSOR_ACCELEROMETER,
SensorManager.SENSOR_DELAY_GAME);

In your onSensorChange() method, you determine whether it’s a shake or not:

public void onSensorChanged(int sensor, float[] values) {
  if (sensor == SensorManager.SENSOR_ACCELEROMETER) {
    long curTime = System.currentTimeMillis();
    // only allow one update every 100ms.
    if ((curTime - lastUpdate) > 100) {
      long diffTime = (curTime - lastUpdate);
      lastUpdate = curTime;

      x = values[SensorManager.DATA_X];
      y = values[SensorManager.DATA_Y];
      z = values[SensorManager.DATA_Z];

      float speed = Math.abs(x+y+z – last_x – last_y – last_z) / diffTime * 10000;

      if (speed > SHAKE_THRESHOLD) {
        Log.d("sensor", "shake detected w/ speed: " + speed);
        Toast.makeText(this, "shake detected w/ speed: " + speed, Toast.LENGTH_SHORT).show();
      }
      last_x = x;
      last_y = y;
      last_z = z;
    }
  }
}

The shake threshold is defined as:

private static final int SHAKE_THRESHOLD = 800;

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.

share|improve this answer
3  
do not SensorListener class.because it is depricated.use SensorEventListener. – picaso Feb 21 '12 at 5:08
The link is dead... Here's the article on archive.org: web.archive.org/web/20100324212856/http://www.codeshogun.com/… – Pilot_51 Aug 2 '12 at 10:09
updated the link. – N-JOY Aug 3 '12 at 5:20

Google helps a lot. You also need to accept answers in order to get better help.

share|improve this answer
1  
upvote for the link. – harmanjd Nov 28 '11 at 23:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.