如何将inputmethodservice绑定到android中的应用程序

发布于 2024-10-21 05:50:25 字数 105 浏览 2 评论 0 原文

嗨朋友们 我已经使用 inputmethodservice 创建了自己的自定义键盘,现在我想在我的 应用程序作为默认键盘。同时它不能是默认键盘 对于我的 Android 手机上运行的其他应用程序

Hi friends
I had created my own custom keyboard using inputmethodservice now i want to use it in my
application as a default keyboard.At the same time it could not be the default keyboard
for other application that are running on my android mobile

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

感情洁癖 2024-10-28 05:50:25

简而言之:您无法自动选择特定的输入法服务。这是 Android 中的一项安全功能(输入方法服务可能会代表用户捕获密码并填写表单)。

切换输入法的唯一方法是向用户呈现一个标准化的InputMethod选择对话框并让他选择(参见InputMethodManagershowInputMethodPicker 函数)。请注意,此选择是永久性的,并且会影响整个系统。

如果您需要特定于应用程序的键盘,您最好扩展 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文