How to get Hindi Keyboard/translate into hindi text programatically in Android

前端 未结 1 1060
死守一世寂寞
死守一世寂寞 2021-01-22 09:03

I am developing an application in Android Tablet , i created below query to get hindi text dynamically but no response. https://stackoverflow.com/questions/8006418/how-to-dynam

相关标签:
1条回答
  • 2021-01-22 09:36

    If you are really serious about this, use the transliteration api from Google.

    It's paid, it used to be free.

    I think you should go and pester Google here.


    Meanwhile can you try using icu4j ?, it seems to support Devanagari transliteration

    icu4j transliteration API

    myTrans = new Transliterator("Latin-Devanagari", null);
    String output = myTrans.transliterate(myString);
    
    0 讨论(0)
提交回复
热议问题