要在Android上使用Google翻译API,你需要进行以下步骤:
获取Google翻译API密钥:
添加依赖项:
build.gradle
文件中添加以下依赖项:dependencies {
implementation 'com.google.cloud:google-cloud-translate:2.2.0'
}
创建翻译服务:
Translate
实例,并使用之前获取的API密钥初始化:import com.google.cloud.translate.Translate;
import com.google.cloud.translate.TranslateOptions;
// ...
Translate translate = TranslateOptions.newBuilder().setApiKey("YOUR_API_KEY").build().getService();
使用翻译服务进行翻译:
translate
对象的translate
方法进行文本翻译:import com.google.cloud.translate.Translation;
// ...
String text = "Hello, world!";
Translation translation = translate.translate(text, Translate.TranslateOption.targetLanguage("zh-CN"));
System.out.println("Original text: " + text);
System.out.println("Translated text: " + translation.getTranslatedText());
注意:你需要将"zh-CN"替换为你想要的目标语言代码。
这样,你就可以在Android上使用Google翻译API进行文本翻译了。记得替换代码中的YOUR_API_KEY
为你自己的API密钥。