0

我一直在开发一个使用增强现实的应用程序。这是最基本的例子。我完全按照本教程进行操作,当我在 HTC Radar 上运行应用程序时,我收到一个弹出窗口,上面写着“此设备不支持 Motion API”。我检查了手机能够运行 AR 应用程序的先决条件,我认为我的手机支持一切(WP7.5 Mango,...),但我可能错了。有谁知道这个问题是否有任何解决方法?提前致谢。

4

2 回答 2

0

在我的专业意见中,HTC Radar 支持运动 API。事实上,我已经开发了一个使用这个 api 的应用程序,它在 HTC Radar 上运行良好。你的手机是在哪里买的?

于 2012-06-13T19:13:05.587 回答
0

如果您按照本教程进行操作,则可能与您检查 API 是否受支持有关。

 // Check to see whether the Motion API is supported on the device.
  if (! Motion.IsSupported)
  {
    MessageBox.Show("the Motion API is not supported on this device.");
    return;
  }
于 2012-07-11T19:44:41.143 回答