如何停止加速度计传感器

发布于 2024-11-28 20:58:17 字数 366 浏览 2 评论 0 原文

我在本例中正是使用此代码

http://android.themind-lab.com/post/2010/05/14/Dont-shake-my-phone!-How-to-detect-shake-motion-on-Android-phone .aspx

我应该在 MyMethod() 中包含什么来停止侦听器,并且在第一次调用 MyMethod() 后不要等待另一次摇动?

谢谢

I am using exactly this code in this example

http://android.themind-lab.com/post/2010/05/14/Dont-shake-my-phone!-How-to-detect-shake-motion-on-Android-phone.aspx

What should i include in MyMethod() to stop the listener and don`t wait for another shake after MyMethod() is called the first time?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

在风中等你 2024-12-05 20:58:17

sensorMgr.unregisterListener(this);

将使系统停止向您发送 onSensorChanged 更新

The line

sensorMgr.unregisterListener(this);

will make the system stop sending you onSensorChanged updates

吃不饱 2024-12-05 20:58:17

终于找到了答案:

这对于取消注册侦听器来说是不够的,您还需要将 SensorEventListener 设置为 null

sensorMgr.unregisterListener(this);
msensorlistener = null;

这个技巧非常有效,

希望它有所帮助。

finally found the answer:

this is not enough for unregister the listener, you also need to set your SensorEventListener to null

sensorMgr.unregisterListener(this);
msensorlistener = null;

this trick works very good,

hope it helps.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文