- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个 Vuzix m300(更新 1.2),我正在尝试让我的应用程序通过语音控制运行。我真的找不到任何特定于 m300 的代码示例(我认为是因为它是新的?)。内置的语音识别器工作正常。但是当我尝试通过 android.speech.SpeechRecognizer 使用它时,我发现识别不可用...
我已经尝试了一些我在 Internet 上找到的代码,尽管有些代码应该可以在 m100 上运行。对我没有任何作用。
这是我的代码:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//grant access to internet
StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
StrictMode.setThreadPolicy(policy);
//set layout
setContentView(R.layout.activity_main);
boolean b = SpeechRecognizer.isRecognitionAvailable(getApplicationContext());
final List<ResolveInfo> services = getApplicationContext().getPackageManager().queryIntentServices(
new Intent(RecognitionService.SERVICE_INTERFACE), 0);
b = isPackageInstalled(this.getApplicationContext(), "com.google.android.googlequicksearchbox");
}
public static boolean isPackageInstalled(@NonNull final Context ctx, @NonNull final String packageName) {
try {
ctx.getApplicationContext().getPackageManager().getApplicationInfo(packageName, 0);
return true;
} catch (final PackageManager.NameNotFoundException e) {
return false;
}
b 始终为假,列表服务为空...因此我认为 Vuzix 上没有安装 SpeechRecongnizer,但是有(Vuzix 内置的?)。我愿意接受任何建议!
编辑:我已经安装了 Google Now App 和 Google App,现在我可以启动 SpeechRecognizer。但出于某种原因,该应用程序不会对我的声音使用react。一段时间后,我得到一个 SpeechRecognizer ERROR_SPEECH_TIMEOUT。同一个应用程序在我的 Android 手机上运行良好,所以我认为它与 Vuzix M300 有关?我在 onCreate 中的代码:
speechRecognizer = SpeechRecognizer.createSpeechRecognizer(this);
speechRecognizerIntent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
speechRecognizerIntent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
speechRecognizerIntent.putExtra(RecognizerIntent.EXTRA_CALLING_PACKAGE, getApplication().getPackageName());
speechRecognizerIntent.putExtra(RecognizerIntent.EXTRA_LANGUAGE, "de-DE");
speechRecognizer.setRecognitionListener(prepareRegnitionListener());
speechRecognizer.startListening(speechRecognizerIntent);
及其他:
private RecognitionListener prepareRegnitionListener() {
// TODO Auto-generated method stub
return new RecognitionListener() {
@Override
public void onRmsChanged(float rmsdB) {
//Didn´t use
}
@Override
public void onResults(Bundle results) {
ArrayList<String> matches = results.getStringArrayList(SpeechRecognizer.RESULTS_RECOGNITION);
Log.d(MainActivity,"Completed speech recognition: Result: " + matches);
String match = matches.get(0);
}
@Override
public void onReadyForSpeech(Bundle params) {
Log.d(MainActivity, "ReadyforSpeech");
}
@Override
public void onPartialResults(Bundle partialResults) {
// Nothing
}
@Override
public void onEvent(int eventType, Bundle params) {
// Nothing
}
@Override
public void onError(int error) {
switch (error){
case SpeechRecognizer.ERROR_AUDIO:
Log.e(MainActivity,"Failed to recognize speech: Audio recording error.");
startListening(1000);
break;
case SpeechRecognizer.ERROR_CLIENT:
Log.e(MainActivity,"Failed to recognize speech: Insufficient permissions.");
startListening(1000);
break;
case SpeechRecognizer.ERROR_NO_MATCH:
Log.d(MainActivity,"Failed to recognize speech: No recognition results matched. Retrying...");
startListening(1000);
break;
default:
Log.e(MainActivity,"Failed to recognize speech. Unknown error" + error);
startListening(1000);
}
}
@Override
public void onEndOfSpeech() {
Log.d(MainActivity, "EndofSpeech");
}
@Override
public void onBufferReceived(byte[] buffer) {
//Didn´t use
}
@Override
public void onBeginningOfSpeech() {
Log.d(MainActivity, "beginnofSpeech");//Do something when speaking starts
}
};
}
调用了 onReadyforSpeech 方法,但此后没有任何反应,而是抛出了错误。
最佳答案
我不熟悉 vuzix Android 版本,但显然它没有您需要的 Google 软件包。我也遇到了这个问题,我已经通过下载并安装 Google App 和 Google Now App 的 apk 解决了这个问题。
你可以在这里试试:
关于安卓语音识别器 Vuzix M300,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45431794/
我正在尝试为 Vuzix M300 智能眼镜开发应用程序。我已经通过 Android SDK Manager 安装了 Vuzix SDK。我已按照 Vuzix 文档中提到的所有步骤进行操作。我还将编译
我有一个 Vuzix m300(更新 1.2),我正在尝试让我的应用程序通过语音控制运行。我真的找不到任何特定于 m300 的代码示例(我认为是因为它是新的?)。内置的语音识别器工作正常。但是当我尝试
我在调用斑马线库时遇到了崩溃,我眼镜的屏幕尺寸是 428/240,这是我的简单调用 Intent i = new Intent(this, CaptureActivity.class);
我完成了所有配置并在多个 Android 设备上进行了测试,一切正常,但是当我使用运行在 Android 6 上的智能眼镜 Vuzix M300 测试流式传输时,流式传输没有发生,甚至没有得到任何An
现在我为 Vuzix SmartGlass 开发了安卓应用程序。我将 apk 文件上传到 google drive 并将链接分享给我的客户以下载 apk。 我的客户下载 apk 文件后,这些下载的文件
1 月 15 日消息,据国外媒体报道,本届 CES2021 上,专注于商业解决方案的 Vuzix 公司带来 microLED 智能眼镜,相较于其他笨重甚至外形丑陋的智能眼镜,它更像我们每个人愿意日常
我是一名优秀的程序员,十分优秀!