我想问一下如何在我的模拟器上使用语音文本代码。我的代码在真实设备上工作,但在仿真器上不起作用。错误说:
No Activity found to handle Intent { act=android.speech.action.RECOGNIZE_SPEECH (has extras) }
我该怎么办?
答案 0 :(得分: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;
}
}
}
}
答案 1 :(得分:1)
您需要在模拟器上安装一个包含处理RECOGNIZE_SPEECH
- 意图的活动的应用。您可以在网络上找到Google的VoiceSearch.apk
。
答案 2 :(得分: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.*/
}
如果有帮助,请告诉我。
答案 3 :(得分: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引擎,因此它会尝试执行相同的操作 - 安装{{1} } app但由于包名称中的错误(com.google.android.voicesearch
而不是纯包名称),它可能会失败。但是,由于&#34;您所在的国家/地区不可用,因此pname:com.google.android.voicesearch
可能无法安装。
答案 4 :(得分:-3)
您可能需要虚拟SD卡。您可以参考here