我想做一个文本到语音测试应用程序,看看本教程:http://android-developers.blogspot.com.es/2009/09/introduction-to-text-to-speech-in.html
我尝试做教程所说的内容,而我只是将语言设置为西班牙语:
mTts = new TextToSpeech(this, this);
Locale loc = new Locale ("spa", "ESP");
mTts.setLanguage(loc);
我也尝试这样做(不行):
// Specify the exact voice you are checking for
checkIntent.putExtra(TextToSpeech.Engine.EXTRA_CHECK_VOICE_DATA_FOR,"spa-ESP");
问题是,当应用程序启动时,应用程序会提示我一个屏幕,要求我下载四种语言,德语,西班牙语,法语,意大利语。如果我只下载西班牙语,然后我按回键,应用程序工作,但每次我启动应用程序,它显示我下载其他三种语言的相同屏幕,并且只有在我下载foru语言时才会出现。< / p>
我的目标是提示用户只下载西班牙语,并且只显示语言下载对话框一次,而不是总是。
我正在使用4.1
的Nexus S手机进行测试这是完整的代码:
public class MainActivity extends Activity implements OnInitListener {
private static final int MY_DATA_CHECK_CODE = 0;
EditText editText;
Button button;
private TextToSpeech mTts;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
editText = (EditText) findViewById(R.id.editText);
button = (Button) findViewById(R.id.button);
editText.setText("Estoy probando, porque hay que probar.");
Intent checkIntent = new Intent();
checkIntent.setAction(TextToSpeech.Engine.ACTION_CHECK_TTS_DATA);
startActivityForResult(checkIntent, MY_DATA_CHECK_CODE);
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
mTts.speak(editText.getText().toString(), TextToSpeech.QUEUE_FLUSH, null);
}
});
}
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == MY_DATA_CHECK_CODE) {
if (resultCode == TextToSpeech.Engine.CHECK_VOICE_DATA_PASS) {
// success, create the TTS instance
mTts = new TextToSpeech(this, this);
Locale loc = new Locale ("spa", "ESP");
mTts.setLanguage(loc);
} else {
// missing data, install it
Intent installIntent = new Intent();
installIntent.setAction(TextToSpeech.Engine.ACTION_INSTALL_TTS_DATA);
startActivity(installIntent);
mTts = new TextToSpeech(this, this);
Locale loc = new Locale ("spa", "ESP");
mTts.setLanguage(loc);
}
}
}
@Override
public void onInit(int arg0) {}
}
我希望你能帮我找到解决方案
问候
答案 0 :(得分:1)
您不得使用MARC codes而是ISO-639-1 / ISO-3166-1代码来创建区域设置:Locale loc = new Locale ("es");
。另请参阅Locale class reference中的“课程概述”部分。