在本教程之后,我正在 WP8 中做一个语音识别示例程序。我的代码如下:
public async void SpeechToText_Click(object sender, RoutedEventArgs e)
{
SpeechRecognizerUI speechRecognition=new SpeechRecognizerUI();
SpeechRecognitionUIResult recoResult=await speechRecognition.RecognizeWithUIAsync();
if (recoResult.ResultStatus == SpeechRecognitionUIStatus.Succeeded)
{
MessageBox.Show(string.Format("You said {0}.", recoResult.RecognitionResult.Text));
}
}
运行程序后,我总是面对一个声音说“很抱歉,我们现在无法访问网络”。
它需要互联网连接吗?我检查了我的互联网连接,但它很好,所以有什么问题,谁能解释一下?是模拟器问题还是我遗漏了什么?