使用 BroadcastReceiver 意图查询 SpeechRecognizer 支持的语言
我在使用 SpeechRecognizer.ACTION_GET_SUPPORTED_LANGUAGES 查询支持的语言时遇到问题。
private void queryLanguages() {
Intent i = new Intent(RecognizerIntent.ACTION_GET_LANGUAGE_DETAILS);
sendOrderedBroadcast(i, null);
}
现在,我知道它说 BroadcastReceiver 是在 RecognizerIntent.DETAILS_META_DATA 中指定的,但我不确定如何访问它。
所以基本上我要问的是如何创建一个意图来检索可用的语言数据?
I'm having trouble querying for supported languages using the SpeechRecognizer.ACTION_GET_SUPPORTED_LANGUAGES.
private void queryLanguages() {
Intent i = new Intent(RecognizerIntent.ACTION_GET_LANGUAGE_DETAILS);
sendOrderedBroadcast(i, null);
}
Now, I know it says the BroadcastReceiver is specified in RecognizerIntent.DETAILS_META_DATA, but I'm not sure as to how I can access that.
So basically what I'm asking is how do I create an Intent to retrieve the available languages data?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是如何完成的:
注意:
This is how it is done:
Note :