Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Detect shaking of device in left or right direction in android?

Tags:

android

I want to use SensorManager but for detecting Shaking of device in left or right direction, I don't know how to detect shaking of device is in right direction or in left direction. I have following question:

  • How to implement shaking of device using SensorManager?

  • How can I detect in which direction shaking of device is?

like image 593
Nikki Avatar asked Jun 03 '11 08:06

Nikki


2 Answers

I have tried this one and found out one way of doing this. The method is, I am monitoring the value of X axis. If the threshold exceeds the limit and the X value exceeds the value we are giving, then we will get a Toast message that on which we shaken the phone either left or right. I have tried like this:

public class ShakeActivity extends Activity implements SensorListener {
        // For shake motion detection.
        private SensorManager sensorMgr;
        private long lastUpdate = -1;
        private float x, y, z;
        private float last_x, last_y, last_z;
        private static final int SHAKE_THRESHOLD = 800;

        protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.main);
        // start motion detection
        sensorMgr = (SensorManager) getSystemService(SENSOR_SERVICE);
        boolean accelSupported = sensorMgr.registerListener(this,
            SensorManager.SENSOR_ACCELEROMETER,
            SensorManager.SENSOR_DELAY_GAME);

        if (!accelSupported) {
            // on accelerometer on this device
            sensorMgr.unregisterListener(this,
                    SensorManager.SENSOR_ACCELEROMETER);
        }
        }

        protected void onPause() {
        if (sensorMgr != null) {
            sensorMgr.unregisterListener(this,
                    SensorManager.SENSOR_ACCELEROMETER);
            sensorMgr = null;
            }
        super.onPause();
        }

        public void onAccuracyChanged(int arg0, int arg1) {
        // TODO Auto-generated method stub
        }

        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];

            if(Round(x,4)>10.0000){
                Log.d("sensor", "X Right axis: " + x);
                Toast.makeText(this, "Right shake detected", Toast.LENGTH_SHORT).show();
            }
            else if(Round(x,4)<-10.0000){
                Log.d("sensor", "X Left axis: " + x);
                Toast.makeText(this, "Left shake detected", Toast.LENGTH_SHORT).show();
            }

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

            // Log.d("sensor", "diff: " + diffTime + " - speed: " + speed);
            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;
            }
        }
        }

        public static float Round(float Rval, int Rpl) {
        float p = (float)Math.pow(10,Rpl);
        Rval = Rval * p;
        float tmp = Math.round(Rval);
        return (float)tmp/p;
        }
    }
like image 165
Basil Avatar answered Nov 15 '22 15:11

Basil


It has been asked (and solved) right here.

like image 44
Gabriel Negut Avatar answered Nov 15 '22 15:11

Gabriel Negut