在我的应用程序中更改语音识别的默认语言



我做了一个英文应用。我的应用程序使用语音识别。但如果我把这个应用安装在另一种系统语言的设备上,比如法语或俄语。我的语音识别系统坏了。它只适用于系统中默认的语言。我如何使英语语言为语音识别默认为我的应用程序?

我找到了这个方法,但它不工作

Locale myLocale;
    myLocale = new Locale("English (US)", "en_US");
    Locale.setDefault(myLocale);
    android.content.res.Configuration config = new android.content.res.Configuration();
    config.locale = myLocale;
    getBaseContext().getResources().updateConfiguration(config, getBaseContext().getResources().getDisplayMetrics());

你可以试试下面的代码:

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

同样,你的应用可以通过发送一个RecognizerIntent来查询支持的语言列表。ACTION_GET_LANGUAGE_DETAILS命令广播如下:

 Intent detailsIntent =  new Intent(RecognizerIntent.ACTION_GET_LANGUAGE_DETAILS);
sendOrderedBroadcast(
        detailsIntent, null, new LanguageDetailsChecker(), null, Activity.RESULT_OK, null, null);

其中LanguageDetailsChecker是这样的:

public class LanguageDetailsChecker extends BroadcastReceiver
{
private List<String> supportedLanguages;
private String languagePreference;
@Override
public void onReceive(Context context, Intent intent)
{
    Bundle results = getResultExtras(true);
    if (results.containsKey(RecognizerIntent.EXTRA_LANGUAGE_PREFERENCE))
    {
        languagePreference =
                results.getString(RecognizerIntent.EXTRA_LANGUAGE_PREFERENCE);
    }
    if (results.containsKey(RecognizerIntent.EXTRA_SUPPORTED_LANGUAGES))
    {
        supportedLanguages =
                results.getStringArrayList(
                        RecognizerIntent.EXTRA_SUPPORTED_LANGUAGES);
    }
}
}

您也可以在这里查看完整的代码:https://github.com/gast-lib

相关内容

  • 没有找到相关文章

最新更新