EditorInfo.inputType 包含未知的输入类

发布于 2024-12-25 15:24:14 字数 386 浏览 1 评论 0原文

我正在编写一个 IME(软键盘),并且我从一个应用程序(Android Mail)中得到一些奇怪的行为。它正在将未知的输入类传递给我的 IME(通过 InputMethodService.onStartInputView(EditorInfo)):

EditorInfo.inputType & EditorInfo.TYPE_MASK_CLASS = 0xf

问题是 0xf 不是 EditorInfo 中定义的输入类之一!根据文档,唯一的合法值是 0x1、0x2、0x3 和 0x4。执行此操作的唯一文本字段是 Android 邮件应用程序中的正文字段。这是 Android Mail 中的错误还是我遗漏了什么?

提前致谢...

I'm writing an IME (soft keyboard) and I'm getting some weird behavior from one app (Android Mail). It is passing an unknown input class to my IME (via InputMethodService.onStartInputView(EditorInfo)):

EditorInfo.inputType & EditorInfo.TYPE_MASK_CLASS = 0xf

The problem is 0xf is not one of the input classes defined in EditorInfo! According to the docs the only legal values are 0x1, 0x2, 0x3 and 0x4. The ONLY text field that does this is the body field in the Android Mail app. Is this a bug in Android Mail or am I missing something?

Thanks in advance...

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

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

发布评论

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

评论(1

夏花。依旧 2025-01-01 15:24:14

当我开发 IME 时,类似的事情发生在我身上。

就我而言,HTC Hero 在默认短信应用程序中发送的输入类型与其他设备不同。
目前我们意识到 HTC Hero 带来了自己的自定义 IME,因此应该实现特定的设备逻辑。

我的建议如下:

  • 如果您想支持发送此“特殊”输入类型的设备/应用程序,只需以不同的方式处理它即可。
  • 始终检查默认的 android IME 如何处理它。
  • 文档指出:如果您不理解该类,请假设 TYPE_CLASS_TEXT 没有变化或标志。

Something like this happened to me while I developed an IME.

In my case the HTC Hero sent different input types than other devices in the default SMS application.
At the moment we realized that the HTC Hero brought it's own custom IME so specific device logic should have been implemented.

My recommendation is the following:

  • If you want to support the device / application which sends this "special" input type just handle it differently.
  • Always check how the default android IME handles it.
  • Documentation states: If the class is not one you understand, assume TYPE_CLASS_TEXT with NO variation or flags.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文