如何在我的Android应用程序中使用谷歌翻译Api

时间:2014-04-03 06:36:06

标签: java android eclipse

我正在制作一个实时语言翻译的Android应用程序...我使用识别器意图从用户获取语音输入,之后它给我一个用户说话的选项列表。现在我想翻译另一个语言使用谷歌翻译api但我不知道如何使用它。我现在所做的代码是。如果你能告诉我如何做到这一点,而不是给我我所说的选项,它自己选择一个,然后使用google translate api ....

package com.example.testing;

import java.util.ArrayList;


import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.speech.RecognizerIntent;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.ArrayAdapter;
import android.widget.Button;
import android.widget.ListView;

public class Voice extends Activity implements OnClickListener{

    ListView lv;
    static final int check=1111;


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.voice);
        lv=(ListView)findViewById(R.id.lvVoiceReturn);
        Button b=(Button)findViewById(R.id.bVoice);
        b.setOnClickListener(this);
    }

    @Override
    public void onClick(View arg0) {
        // TODO Auto-generated method stub
        Intent i=new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
        i.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
        i.putExtra(RecognizerIntent.EXTRA_PROMPT, "Speak Up");
        startActivityForResult(i, check);
    }

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        // TODO Auto-generated method stub
        if(requestCode == check && resultCode==RESULT_OK){

            ArrayList<String> results=data.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
            lv.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1,results));
        }

        super.onActivityResult(requestCode, resultCode, data);
    }


}

1 个答案:

答案 0 :(得分:20)

以下是https://developers.google.com/translate/

的文档

另外,请参阅同一

上的this演示项目

Bing还提供translation API

检查this Google翻译API示例。

希望这有帮助。