在 Android 中将英文文本翻译为印地语

发布于 2024-11-10 10:01:11 字数 840 浏览 3 评论 0原文

我想将英语文本转换为印地语并将其显示在 TextView 中。我遵循以下 URL http://android-er.blogspot.com/2009/10/androidtranslate-using-google-translate.html 但它似乎不起作用。 还有其他方法吗?请帮帮我。

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.read_view);
    mTts = new TextToSpeech(this,this);
    try {
        setTranslate();
    } catch (Exception e) {
        e.printStackTrace();
    }

}

private void setTranslate() throws Exception {
 String OutputString = Translate.execute("hello",
         Language.ENGLISH, Language.HINDI);
 TextView tv = (TextView) findViewById(R.id.translate);
 tv.setText(OutputString);
}

在这里,我尝试在 TextView id“translate”中显示印地文文本

I want to convert a text in English to Hindi and display it in the TextView.I followed the following URL http://android-er.blogspot.com/2009/10/androidtranslate-using-google-translate.html but it dosen't seems to work.
Is there any other method to do it?Help me out.

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.read_view);
    mTts = new TextToSpeech(this,this);
    try {
        setTranslate();
    } catch (Exception e) {
        e.printStackTrace();
    }

}

private void setTranslate() throws Exception {
 String OutputString = Translate.execute("hello",
         Language.ENGLISH, Language.HINDI);
 TextView tv = (TextView) findViewById(R.id.translate);
 tv.setText(OutputString);
}

Here I am trying to display hindi text in the TextView id "translate"

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一江春梦 2024-11-17 10:01:12

Microsoft Bing Translator 提供了此英语-印地语的翻译器,并且对于有限的搜索完全免费。
http://www.microsoft.com/web/post /使用-free-bing-translation-api

Microsoft Bing Translator offers a translator for this english-hindi and its completely free for a limited searches.
http://www.microsoft.com/web/post/using-the-free-bing-translation-apis.

情话难免假 2024-11-17 10:01:11

确保您的应用程序具有互联网权限

android.permission.INTERNET

添加谷歌翻译API jar即 google.api.translate-java-0.90.jar

另请检查此 客户端 api< /a> 它来了当您想要轻松处理某些事件和请求时,有时很有用

make sure your application does have internet permission

android.permission.INTERNET

add google translate api jar i.e google.api.translate-java-0.90.jar

Also check this client api it comes useful some times when u want to handle certain events and requests with ease

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文