我想将英文文本转换为印地语并在 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“翻译”中显示印地语文本