5

我想问我如何在我的模拟器上使用语音来文本代码。我的代码适用于真实设备,但不适用于模拟器。错误说:

 No Activity found to handle Intent { act=android.speech.action.RECOGNIZE_SPEECH (has extras) }

我能做些什么?

4

5 回答 5

8
package net.viralpatel.android.speechtotextdemo;

import java.util.ArrayList;

import android.app.Activity;
import android.content.ActivityNotFoundException;
import android.content.Intent;
import android.os.Bundle;
import android.speech.RecognizerIntent;
import android.view.Menu;
import android.view.View;
import android.widget.ImageButton;
import android.widget.TextView;
import android.widget.Toast;

public class MainActivity extends Activity {

    protected static final int RESULT_SPEECH = 1;

    private ImageButton btnSpeak;
    private TextView txtText;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        txtText = (TextView) findViewById(R.id.txtText);

        btnSpeak = (ImageButton) findViewById(R.id.btnSpeak);

        btnSpeak.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {

                Intent intent = new Intent(
                        RecognizerIntent.ACTION_RECOGNIZE_SPEECH);

                intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, "en-US");

                try {
                    startActivityForResult(intent, RESULT_SPEECH);
                    txtText.setText("");
                } catch (ActivityNotFoundException a) {
                    Toast t = Toast.makeText(getApplicationContext(),
                            "Ops! Your device doesn't support Speech to Text",
                            Toast.LENGTH_SHORT);
                    t.show();
                }
            }
        });

    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.activity_main, menu);
        return true;
    }

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);

        switch (requestCode) {
        case RESULT_SPEECH: {
            if (resultCode == RESULT_OK && null != data) {

                ArrayList<String> text = data
                        .getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);

                txtText.setText(text.get(0));
            }
            break;
        }

        }
    }
}
于 2012-10-20T14:14:52.460 回答
1

您需要在模拟器上安装一个包含处理RECOGNIZE_SPEECH-intent 的 Activity 的应用程序。您也许可以VoiceSearch.apk在网络上找到 Google 的。

于 2011-12-19T13:33:01.587 回答
0

您需要com.google.android.voicesearch在没有语音识别活动的目标设备上安装应用程序,例如:

Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=com.google.android.voicesearch"));
startActivity(browserIntent);

如果您尝试安装 Google 的搜索应用程序 - 它不会有帮助,因为它内部不包含 VR 引擎,因此它会尝试做同样的事情 - 安装com.google.android.voicesearch应用程序但它可能会由于包名称中的错误而失败(pname:com.google.android.voicesearch而不是只是纯包名)。但是com.google.android.voicesearch,由于“在您的国家/地区不可用”,可能无法安装。

于 2014-06-14T09:47:24.703 回答
0

有些事情您无法使用模拟器进行测试。语音到文本是其中之一。

我不确定这一点,但你不能在模拟器中使用这个 android 功能。

无论如何,您应该使用try/catch处理此异常并向用户提供一些反馈。

您可以检查Activity当前运行您的应用程序的设备中是否有类似的操作:

        PackageManager pm = context.getPackageManager();
        List<ResolveInfo> infoList = pm.queryIntentActivities(new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH), 0);
        if (infoList.size() == 0) {
             /** Show some feedback to user if there is the activity. Something like "Your device is not abl to run this feature..."*/
        }else{
             /**Your current code goes here.*/
        }

让我知道它是否有帮助。

于 2012-10-21T22:48:45.887 回答
-3

您可能需要一个虚拟 SD 卡。你可以参考这里

于 2011-12-17T07:17:33.773 回答