调用android.speech.RecognizerIntent API会导致“连接错误”对话框,并在日志中显示“ calling_package”警告
作者:互联网
我写了一个小应用程序,允许用户通过按钮选择使用语音搜索的语言,而不是依赖于用户的语言偏好(有时您想用日语进行语音搜索,而无需将整个UI切换为日语).
我正在HTC Desire / Android 2.1(Softbank-x06ht)上测试该应用程序.但是,当我调用语音api时,会出现“连接失败”对话框[重试/取消],LogCat会显示以下警告:
09-12 11:26:13.583: INFO/RecognitionService(545): ssfe url=http://www.google.com/m/voice-search
09-12 10:49:45.683: WARN/RecognitionService(545): required parameter 'calling_package' is missing in IntentAPI request
请注意,我可以使用Google语音搜索应用,它可以正常运行.
根据API Docs http://developer.android.com/reference/android/speech/RecognizerIntent.html#EXTRA_CALLING_PACKAGE,开发人员请勿使用calling_package参数.好吧,如果是这种情况,为什么日志说它丢失了?
我尝试自己提供参数,但它根本没有改变结果.
private static final String TRIVOICE_CALLING_PACKAGE = "calling_package";
private void callSpeechWebSearch (String language) {
Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
RecognizerIntent.LANGUAGE_MODEL_WEB_SEARCH);
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE,
language);
intent.putExtra(TRIVOICE_CALLING_PACKAGE,
"org.filsa.trivoice");
//intent.putExtra(RecognizerIntent.EXTRA_PROMPT, "Speech recognition demo");
try {
startActivity(intent);
} catch (ActivityNotFoundException anfe) {
makeToast("ANFE:" +anfe.getMessage());
}
}
解决方法:
我遇到了同样的问题,并将调用包设置为实际的调用包(不是类),然后一切正常. Tmobile G2上的Android 2.2.
标签:voice-recognition,android 来源: https://codeday.me/bug/20191209/2096711.html