语音识别在此设备上不可用。是否要安装Google App以获得语音识别?

时间:2018-09-10 04:14:49

标签: android speech-recognition

我正在开发具有语音功能的android项目。我已经使用过Google Speech。我得到这个弹出窗口。语音识别在此设备上不可用。您是否要安装Google App以获得语音识别?如果我同意,它将重定向我到商店,但该应用程序已在移动设备上可用。我不知道该怎么办。请帮我弄清楚。

enter image description here

这是我的代码,

private void onRecordAudioPermissionGranted() {
final Activity activity = ConsoleActivity.this;
    activity.runOnUiThread(new Runnable() {
        @Override
        public void run() {
            Handler handler = new Handler();
            handler.postDelayed(new Runnable() {
                @Override
                public void run() {
                    linearLayout.setVisibility(View.VISIBLE);
                    //   progress.setVisibility(View.VISIBLE);
                }
            }, 100);
        }
    });
    // linearLayout.setVisibility(View.VISIBLE);
    //progress.setVisibility(View.VISIBLE);

    try {
        // Speech.getInstance().stopTextToSpeech();
        Speech.getInstance().startListening(progress, this);
    } catch (SpeechRecognitionNotAvailable exc) {

        Utils.showSpeechNotSupportedDialog(this);
    } catch (GoogleVoiceTypingDisabledException exc) {
        Utils.showEnableGoogleVoiceTyping(this);
    }
}

0 个答案:

没有答案