1

我正在为孩子们创建一个新的应用程序。这个应用程序是为孩子们学习字母。

现在我创建了一个主屏幕,其中使用 GridView 显示字母。现在我想要的是,当单击特定字母时,它应该转到该屏幕中的下一个屏幕,它应该使用线条绘制一个字母,然后应该添加一个像(Apple 的'A')这样的声音?

有没有人知道该怎么做然后请帮助我...

提前致谢...

4

1 回答 1

1

试试这个:

TextToSpeech mTextToSpeech = new TextToSpeech(this,new TextToSpeech.OnInitListener()
{
  @Override
  public void onInit(int status)
  {
    // TODO Auto-generated method stub
    if(status == TextToSpeech.SUCCESS)
    {
      // set language
      int supported = mTextToSpeech.setLanguage(Locale.US);
      if((supported != TextToSpeech.LANG_AVAILABLE)&&(supported != TextToSpeech.LANG_COUNTRY_AVAILABLE))
      {
        displayToast("dont support current language");
      }
    }
  } 
});

// start to speak
mTextToSpeech.speak("A for Apple", TextToSpeech.QUEUE_FLUSH, null);  

// store your voice to file
int r = mTextToSpeech.synthesizeToFile(mEditText.getText().toString(), null, "/mnt/sdcard/speak.wav");
if(r == TextToSpeech.SUCCESS) displayToast("save success!");    
于 2012-10-18T08:35:13.417 回答