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

I am using the following class to read accelerometer data from an android mobile:

public class AccelerometerData extends Activity implements SensorEventListener {

    //variables

    public AccelerometerData()
    {

        mSensorManager = (SensorManager) getSystemService(Context.SENSOR_SERVICE);
        mAccelerometer = mSensorManager.getDefaultSensor(Sensor.TYPE_ACCELEROMETER);
        mSensorManager.registerListener(this, mAccelerometer, SensorManager.SENSOR_DELAY_NORMAL);
    }

    @Override
    public void onAccuracyChanged(Sensor sensor, int accuracy) {
    }

    @Override
    protected void onPause() {
        super.onPause();
        mSensorManager.unregisterListener(this);
    }

    @Override
    protected void onResume() {
        super.onResume();
        mSensorManager.registerListener(this, mAccelerometer, SensorManager.SENSOR_DELAY_NORMAL);
    }

    @Override
    public void onSensorChanged(SensorEvent event) {
        // TODO: my codes

        }
    }
}

Now from my main activity class, I was calling that class to read the data

AccelerometerData sbt = new AccelerometerData ();

and it shows the following message Unfortunately AccelerometerData has stopped. I am new in android development and not sure what is wrong here.

Any help would be highly appreciated.

share|improve this question
You can't start activity like that. – abc667 Feb 25 at 19:32
will you please suggest me necessary changes in that class? – MKS Feb 25 at 19:42

1 Answer

Your class shouldn't extend Activity. It doesn't need to. It should be owned by an activity of some sort instead.

share|improve this answer
ok, will you please suggest me necessary changes in that class? – MKS Feb 25 at 19:38

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.