android – 我怎么知道键盘语言? (烯/ FR)

前端之家收集整理的这篇文章主要介绍了android – 我怎么知道键盘语言? (烯/ FR)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我开发了一个短信发送者应用程序,我想知道用户使用的语言.因此,当用户键入消息时,我如何知道他/她使用的语言?

解决方法

@H_403_5@ 通过使用获取输入类型管理器:
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);

然后,使用下面的方法选择从中获取内容

http://developer.android.com/reference/android/view/inputmethod/InputMethodManager.html#getCurrentInputMethodSubtype%28%29

要么:
http://developer.android.com/reference/android/view/inputmethod/InputMethodManager.html#getLastInputMethodSubtype()

与此一起获取输入类型的语言环境:

http://developer.android.com/reference/android/view/inputmethod/InputMethodSubtype.html#getLocale()

猜你在找的Android相关文章