如何在 Android 应用程序中使用/调用陀螺仪
我正在开发 MOTOROLA XOOM 应用程序。发展。我想在我的应用程序中使用陀螺仪传感器。如果有人可以帮助我在我的程序中调用陀螺仪。
谢谢你,
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,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
SensorManager
为默认Sensor.TYPE_GYROSCOPE
传感器注册SensorEventListener
。您的SensorEventListener
将在onSensorChanged()
中接收SensorEvent
对象。在那里,您可以从SensorEvent
读取绕 X/Y/Z 轴的角速度。角速度数据的详细信息可以在 SensorEvent 文档。Use
SensorManager
, to register aSensorEventListener
for the defaultSensor.TYPE_GYROSCOPE
sensor. YourSensorEventListener
will receiveSensorEvent
objects inonSensorChanged()
. There, you can read the angular speed around the X/Y/Z axes from theSensorEvent
. Details of the angular speed data can be found in the documentation forSensorEvent
.