val inputMethodManager = context.getSystemService(Context.INPUT_METHOD_SERVICE) as InputMethodManager
val inputMethodSubtype = inputMethodManager.currentInputMethodSubtype
//as a result inputMethodSubtype.locale == "" instead of something like "en" or "en_US"
有人知道如何在android键盘上获取当前输入语言。此代码可在Android> = Noughat上运行,并在华为和仿真器> = Lollipop上运行。 我对android> = Lollipop的解决方案感兴趣(华为和模拟器的行为令人满意)
谢谢