绑定到识别服务失败

时间:2015-08-13 11:17:37

标签: android speech-recognition voice-recognition speech-to-text

我正在测试VoiceRecognition.i已经搜索过,但没有找到任何可行的答案。 这是代码。

import android.content.Intent;
import android.speech.RecognitionListener;
import android.speech.RecognizerIntent;
import android.speech.SpeechRecognizer;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;

import java.util.List;

public class MainActivity extends AppCompatActivity implements View.OnClickListener, RecognitionListener {

Button button;
SpeechRecognizer speechRecognizer;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    button = (Button) findViewById(R.id.button);
    speechRecognizer = SpeechRecognizer.createSpeechRecognizer(getApplicationContext());
    speechRecognizer.setRecognitionListener(this);
    button.setOnClickListener(this);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.menu_main, menu);
    return true;
}

private static final int SPEECH_REQUEST_CODE = 0;

// Create an intent that can start the Speech Recognizer activity
private void displaySpeechRecognizer() {
    Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
    intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_PREFERENCE, "en");
    intent.putExtra(RecognizerIntent.EXTRA_CALLING_PACKAGE,
            this.getPackageName());
    speechRecognizer.startListening(intent);

}
@Override
protected void onActivityResult(int requestCode, int resultCode,
                                Intent data) {
    if (requestCode == SPEECH_REQUEST_CODE && resultCode == RESULT_OK) {
        List<String> results = data.getStringArrayListExtra(
                RecognizerIntent.EXTRA_RESULTS);
        String spokenText = results.get(0);
        System.out.println(spokenText);
        // Do something with spokenText
    }
    super.onActivityResult(requestCode, resultCode, data);
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();

    //noinspection SimplifiableIfStatement
    if (id == R.id.action_settings) {
        return true;
    }

    return super.onOptionsItemSelected(item);
}

@Override
public void onClick(View v) {
    switch (v.getId()) {
        case R.id.button:
            displaySpeechRecognizer();
            break;
    }

}

@Override
public void onReadyForSpeech(Bundle params) {
    System.out.println("onReadyForSpeech");

}

@Override
public void onBeginningOfSpeech() {
    System.out.println("onBeginningOfSpeech");

}

@Override
public void onRmsChanged(float rmsdB) {
    System.out.println("onRmsChanged");

}

@Override
public void onBufferReceived(byte[] buffer) {
    System.out.println("onBufferReceived");

}

@Override
public void onEndOfSpeech() {
    System.out.println("onEndOfSpeech");

}

@Override
public void onError(int error) {
    System.out.println("onError");

}

@Override
public void onResults(Bundle results) {
    System.out.println("onResults");

}

@Override
public void onPartialResults(Bundle partialResults) {
    System.out.println("onPartialResults");

}

@Override
public void onEvent(int eventType, Bundle params) {
    System.out.println("onEvent");

}

}

这就是布局。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">

<TextView android:text="@string/hello_world" android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/textView" />

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="whats up"
    android:id="@+id/button"
    android:layout_below="@+id/textView"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="94dp" />

</RelativeLayout>

这是清单

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.byteshaft.voicerecognition" >

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".MainActivity"
        android:label="@string/app_name" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>
</manifest>

我收到此错误   - &GT; &#34;语音识别E / SpeechRecognizer:绑定到识别服务失败&#34; 也找不到任何有用的例子。

5 个答案:

答案 0 :(得分:1)

我刚遇到同样的问题,对我来说,问题是我的手机上安装了Cyanogenmod版本,但没有安装语音搜索。以下是我解决问题的步骤:

  1. this thread in xda-developers下载APK文件。该线程有一个关于如何安装该文件的高级描述,但步骤如下。
  2. 使用命令提示符(windows)或shell窗口(linux),运行位于android sdk / platform-tools文件夹中的adb应用程序
  3. 运行命令adb devices确保它可以与您的设备通信如果您的设备未列出,则需要确保手机的USB驱动程序正确无误。
  4. 通过adb获取root访问权限。您可能已经拥有它但运行adb root
  5. 执行adb shell
  6. 进入手机外壳
  7. 找到对应于&#34; / system&#34的/ dev列表;使用命令cat /proc/mounts。您正在寻找类似/dev/block/mtdblock4 /system yaffs2 ro, realtime 0 0
  8. 的内容
  9. 使用相应的/ dev条目,使用命令将文件系统重新安装到读/写模式(我使用上面的示例,但模式应该很明显)mount -o rw,remount /dev/block/mtdblock4。使用命令exit
  10. 命中进入和退出adb shell
  11. 使用推送命令将apk从计算机复制到手机:adb push C:\VoiceSearch.apk system/app
  12. 使用adb shell返回到adb shell,然后使用mount -o ro,remount /dev/block/mtdblock4以只读模式重新安装存储(为了安全起见,您可以将其保留在外),然后退出shell
  13. 那就是它。无需重启。您可以通过定期Google搜索并按下麦克风按钮来查看是否启动来测试。

答案 1 :(得分:1)

如果您在模拟器中运行,则它没有语音识别功能。

答案 2 :(得分:0)

将语音输入设置中的“增强型Google服务”(请参见屏幕截图)更改为基本:

voice inout settings

答案 3 :(得分:0)

有时,语音识别仅在较旧的设备上不可用。 检查this condition是否有“系统上有语音识别服务”。

答案 4 :(得分:0)

从 API 级别 30 需要为 android.speech.RecognitionService 添加 <queries>AndroidManifest.xml

<queries>
    <intent>
        <action android:name="android.speech.RecognitionService" />
    </intent>
</queries>