使用 BroadcastReceiver 意图查询 SpeechRecognizer 支持的语言

发布于 2024-12-11 06:33:08 字数 369 浏览 0 评论 0原文

我在使用 SpeechRecognizer.ACTION_GET_SUPPORTED_LANGUAGES 查询支持的语言时遇到问题。

private void queryLanguages() {
    Intent i = new Intent(RecognizerIntent.ACTION_GET_LANGUAGE_DETAILS);
    sendOrderedBroadcast(i, null);
}

现在,我知道它说 BroadcastReceiver 是在 RecognizerIntent.DETAILS_META_DATA 中指定的,但我不确定如何访问它。

所以基本上我要问的是如何创建一个意图来检索可用的语言数据?

I'm having trouble querying for supported languages using the SpeechRecognizer.ACTION_GET_SUPPORTED_LANGUAGES.

private void queryLanguages() {
    Intent i = new Intent(RecognizerIntent.ACTION_GET_LANGUAGE_DETAILS);
    sendOrderedBroadcast(i, null);
}

Now, I know it says the BroadcastReceiver is specified in RecognizerIntent.DETAILS_META_DATA, but I'm not sure as to how I can access that.

So basically what I'm asking is how do I create an Intent to retrieve the available languages data?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

长梦不多时 2024-12-18 06:33:08

这是如何完成的:

    Intent intent = new Intent(RecognizerIntent.ACTION_GET_LANGUAGE_DETAILS);
    context.sendOrderedBroadcast(intent, null, new HintReceiver(),
                    null, Activity.RESULT_OK, null, null);

    private static class HintReceiver extends BroadcastReceiver {
            @Override
            public void onReceive(Context context, Intent intent) {
                if (DBG)
                    Log.d(TAG, "onReceive(" + intent.toUri(0) + ")");
                if (getResultCode() != Activity.RESULT_OK) {
                    return;
                }
                // the list of supported languages. 
                ArrayList<CharSequence> hints = getResultExtras(true)
                        .getCharSequenceArrayList(
                                RecognizerIntent.EXTRA_SUPPORTED_LANGUAGES);

        }
    }

注意:

是否实际提供这些取决于特定的实现

This is how it is done:

    Intent intent = new Intent(RecognizerIntent.ACTION_GET_LANGUAGE_DETAILS);
    context.sendOrderedBroadcast(intent, null, new HintReceiver(),
                    null, Activity.RESULT_OK, null, null);

    private static class HintReceiver extends BroadcastReceiver {
            @Override
            public void onReceive(Context context, Intent intent) {
                if (DBG)
                    Log.d(TAG, "onReceive(" + intent.toUri(0) + ")");
                if (getResultCode() != Activity.RESULT_OK) {
                    return;
                }
                // the list of supported languages. 
                ArrayList<CharSequence> hints = getResultExtras(true)
                        .getCharSequenceArrayList(
                                RecognizerIntent.EXTRA_SUPPORTED_LANGUAGES);

        }
    }

Note :

Whether these are actually provided is up to the particular implementation

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文