Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Detect Keyboard IME language on Android

Tags:

android

How can I detect which language is use typing into EditText. I know the API 13 has getCurrentInputMethodSubtype, but what is the alternate for older versions?

like image 830
Taranfx Avatar asked Feb 06 '12 07:02

Taranfx


1 Answers

There is none. And I wouldn't count on even that above working across all keyboards. I wrote a popular keyboard and have no idea where the framework would get that info from- there's no API for them to query what keyboard type we are or for us to update if we switched (say from a user using an in keyboard switch language shortcut).

The keyboard API is really Google's bastard stepchild. They don't seem to put a lot of thought into it, or work with other major keyboard makers when adding new functionality.

like image 198
Gabe Sechan Avatar answered Oct 01 '22 04:10

Gabe Sechan