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

I would like to use the accelerometer data in my application.

I am able to access the TYPE_ACCELEROMETER without any problems, but many suggest to use the TYPE_LINEAR_ACCELERATION which is already filtered from the earth gravity. It looks like I do not have access to that sensor though, as in the code below the log will return null. From what I understand TYPE_LINEAR_ACCELERATION is available as a "software sensor" on Android API greater then 8...I am using 14 as my minimum on a Samsung Galaxy Tab 2.

Any idea why I get null? Is it because this model does not have a gyroscope?

Code:

mSensorManager = (SensorManager) getSystemService(Context.SENSOR_SERVICE);

mAccelerometer = mSensorManager.getDefaultSensor(Sensor.TYPE_ACCELEROMETER);

mLinearAccelerometer = mSensorManager.getDefaultSensor(Sensor.TYPE_LINEAR_ACCELERATION);

Log.i("TYPE_LINEAR_ACCELERATION", String.valueOf(mLinearAccelerometer));

Thanks

Edit: added missing "=" sign

share|improve this question
2  
Is the = (equal sign) after mLinearAccelerometer missing in your actual code? – anthropomo Jan 17 at 13:34
Good catch. I was also going to suggest that perhaps there is no linear_acceleration sensor on the device if it has no gyro. I haven't tested this myself though. – Edward Falk Jan 17 at 20:35
Just a copy and paste error I guess, equal sign is right there in my code otherwise it would not compile. – Mirko Jan 18 at 14:44
I edited my code adding the equal sign back – Mirko Jan 18 at 14:45

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.