I am working on MOTOROLA XOOM for app. development. I want to use gyros sensor in my application. If someone can help me out to call gyros in my program.

Thank you,

link|improve this question

14% accept rate
feedback

1 Answer

Use SensorManager, to register a SensorEventListener for the default Sensor.TYPE_GYROSCOPE sensor. Your SensorEventListener will receive SensorEvent objects in onSensorChanged(). There, you can read the angular speed around the X/Y/Z axes from the SensorEvent. Details of the angular speed data can be found in the documentation for SensorEvent.

link|improve this answer
Now, I am using this code really works. Thank You – Arslan Ahmad Jun 13 '11 at 5:32
feedback

Your Answer

 
or
required, but never shown

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