查找当前Android键盘的语言
如何在代码中找到android中当前键盘的语言。 以及如何在代码中设置键盘的语言。例如,如果用户选择中文,则应出现中文键盘,如果选择英文,则应出现英文键盘。
how to find the language of the current keyboard in android in the code.
and how can I set the language of the keyboard in the code. for example if the user select Chinese the Chinese keyboard should appear and if select English the English keyboard should appear .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有很多与此类似的问题已经得到解答。
大多数答案都涉及
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
There are plenty of questions similar to this one that are already answered.
Most answers involve
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);