我想做一个文本到语音测试应用程序,看到这个教程: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");
问题是当应用程序启动时,应用程序会提示我到一个屏幕,要求我下载四种语言,德语、西班牙语、法语、意大利语。如果我只下载西班牙语然后按返回键,应用程序可以工作,但每次我启动应用程序时,它都会显示相同的屏幕来下载其他三种语言,并且只有在我下载论坛语言时才会停止出现。
我的目标是提示用户只下载西班牙语,并且只显示一次语言下载对话框,而不是总是显示。
我正在使用 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) {}
}
我希望你能帮我找到解决办法
问候