1

Like, I will write using a English keyboard but in EditText/SearchView the font will become Phonetic [bangla]. How can I achieve this ?

Example

camelCaseCoder
  • 1,447
  • 19
  • 32

1 Answers1

1

The process is called transliteration. There are libraries available that can do that. The Google Translate library is one such example.

I'm thinking:

  1. Enter text in your edit text.
  2. Send it to Library.
  3. Show a loading indicator.
  4. Receive the transliterated response from Library.
  5. Set it in your edit text
  6. Hide loading indicator.
Vinay W
  • 9,912
  • 8
  • 41
  • 47