我使用 Android 4.1.2 开发了一个应用程序,并且语音到文本运行良好,但是当我在 Google Glass 上尝试它时它不工作(未找到活动异常)。这是我的语音转文本代码
Intent intent = new Intent(
RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, "en-US");
try {
startActivityForResult(intent, requestCode);
} catch (ActivityNotFoundException a) {
Toast t = Toast.makeText(getApplicationContext(),
"Opps! Your device doesn't support Speech to Text",
Toast.LENGTH_SHORT);
}
我尝试手动安装语音合成 apk,但是当我尝试启动语音合成应用程序时崩溃了。有没有办法安装语音合成器,或者是否有解决方法代码让语音到文本在 Google Glass 中工作?