如何在android中将翻译器的一种语言实现为另一种语言

时间:2010-11-10 11:54:36

标签: android google-translate

我正在为我的应用实施谷歌翻译兼容器       怎么能实现这个应用程序的一些想法       一些类似的源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);

1 个答案:

答案 0 :(得分:4)

Google Language API

  

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