3

我正在为我的应用程序实现谷歌翻译模拟器
如何实现关于这个应用程序的一些想法转发一些类似的源 URL 或相关的谷歌 api 请提前转发谢谢

screenshot of this app

http://www.freeimagehosting.net/uploads/73620ad386.png

input:
from any language <-----translate----------->to any language 
output:
translation of text and  voice of translate text

this app same as google translator
checkIntent.setAction(TextToSpeech.Engine.ACTION_CHECK_TTS_DATA);
startActivityForResult(checkIntent,1);  
 private TextToSpeech mTts;
    protected void onActivityResult(
            int requestCode, int resultCode, Intent data) {
        if (requestCode == 1) {
            if (resultCode == TextToSpeech.Engine.CHECK_VOICE_DATA_PASS) {
                // success, create the TTS instance
                mTts = new TextToSpeech(this, null);
            } else {
                // missing data, install it
                Intent installIntent = new Intent();
                installIntent.setAction(
                    TextToSpeech.Engine.ACTION_INSTALL_TTS_DATA);
                startActivity(installIntent);
            }
        }
        mTts.setLanguage(Locale.US);
4

1 回答 1

4

谷歌语言 API

需要将您的网站或应用程序翻译成一种或多种不同的语言?借助 Google 翻译,您可以在数千种语言对之间动态翻译文本。

于 2010-11-10T14:16:02.950 回答