gpt4 book ai didi

android - 选择其他语言进行语音识别

转载 作者:太空狗 更新时间:2023-10-29 14:48:36 24 4
gpt4 key购买 nike

我使用这段代码来修改不同的语音识别语言,如您所见,我使用 Spinner 来选择其他语言。

public static String country;

语音识别代码:

String name = country;
Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);


intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,
RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE, name);

将语言设置到我的 Spinner 中:

public String LanguageSelection() {
language_select_spinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
@Override
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
// final String country;
switch (position){
case 0:
country="en"; // english
break;

case 1:
country="it"; // itally
break;
}
}

但这在意大利行不通。
它只识别英语。

我该如何解决?

最佳答案

要选择一种语言,您需要将其添加到您的 Intent 中,就像您所做的那样。只需使用不同的 Locale.YourLanguage

创建一个数组
 Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE, Locale.JAPANESE);

但是,如果您没有在手机中启用语言包,它将无法使用。因此,您可以做的最好的事情是将您的用户重定向到他的电话输入选项,目的是 ACTION_INPUT_METHOD_SETTINGS

关于android - 选择其他语言进行语音识别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37297571/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com