How to get Hindi Keyboard / translate Hindi text programmatically in Android

I am developing an application on an Android Tablet, I created a request below to get Hindi text dynamically, but without an answer. https://stackoverflow.com/questions/8006418/how-to-dynamically-convert-and-show-data-in-hindi-in-android

If this is not possible, at least guide me, how can I programmatically get the Hindi Virtual Keboard in my Bee tel tablet. Or do I need to translate English into Hindi dynamically, because I already know if I can use the Google Translator API , we can do it, but in my case most of the time my application will work without any Internet / network , so in this case I can’t use the Google translator, so anyone can tell me other alternatives that I have ....

Please give me an answer, for every valuable answer I will give Kudos ...

+1
source share
1 answer

, api Google.

, .

, Google .


icu4j? Devanagari

icu4j transliteration API

myTrans = new Transliterator("Latin-Devanagari", null);
String output = myTrans.transliterate(myString);
+1

All Articles