如何将inputmethodservice绑定到android中的应用程序
嗨朋友们 我已经使用 inputmethodservice 创建了自己的自定义键盘,现在我想在我的 应用程序作为默认键盘。同时它不能是默认键盘 对于我的 Android 手机上运行的其他应用程序
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简而言之:您无法自动选择特定的输入法服务。这是 Android 中的一项安全功能(输入方法服务可能会代表用户捕获密码并填写表单)。
切换输入法的唯一方法是向用户呈现一个标准化的InputMethod选择对话框并让他选择(参见InputMethodManager 的 showInputMethodPicker 函数)。请注意,此选择是永久性的,并且会影响整个系统。
如果您需要特定于应用程序的键盘,您最好扩展 KeyboardView 而不是 inputmethodservice。
In short : you can not automatically select a specific inputmethodservice. This is a security feature in android (an inputmethodservice can potentially capture password and fill forms on user's behalf).
The only way to switch input method is to present a standardized InputMethod selection dialog to the user and let him choose (see InputMethodManager's showInputMethodPicker function). Note that this choice is permanent and will affect the whole system.
If you need an application specific keyboard, you would better extend KeyboardView instead of inputmethodservice.