如何检测手机(WP7)是否停止晃动
我可以让手机对震动做出反应,但是判断手机已停止震动的最佳方法是什么?
I can get the phone to react to a shake, but what is the best way to tell that it has stopped shaking?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个示例为我工作。
在页面的最底部您会看到:
This example worked for me.
At the very bottom of the page you'll see:
就像 #Daniel Pereira 所说的那样,但是在 void ShakeDetected(object sender, EventArgs e) 中使用 Dispatcher.BeginInvoke(() => youMethod());并做你假装在 youMethod() 中做的事情。我知道这篇文章有点旧,但现在其他人可以知道它是如何解决的
Do like #Daniel Pereira said, but in the void ShakeDetected(object sender, EventArgs e) use a Dispatcher.BeginInvoke(() => youMethod()); and do what you pretend to do in youMethod(). I know this post is a little old but now other people can know how it resolve