创建自定义输入类型
是否可以创建一个自定义的InputType供Android键盘使用?
我想让键盘首先显示数字键盘,然后在用户输入浮点数或整数后跟空格后,我希望它切换到默认的字母键盘。
我尝试使用 TextWatcher 实例,但这在 2.0 以上的任何版本上似乎都有问题(有时它会丢失一个字符,这在 1.6 或更低版本上不会发生)。
有什么想法吗?
感谢您的阅读。
Is it possible to create a custom InputType for the Android keyboard to use?
I want to make it so the keyboard shows the number pad first and then after a user types in a float or an integer followed by a space I want it to switch to the default alpha keyboard.
I tried using a TextWatcher instance, but this seems buggy on anything above 2.0 (sometimes it would lose a character, this doesn't happen on 1.6 or below).
Any ideas?
Thanks for reading.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是可能的。
我自己还没有这样做过,但证据就在充当输入类型的应用程序中。查找 Swype 和 8pen 等应用程序;它们用作不同的输入类型,Swype 构建在类似于默认键盘的键盘上,而 8pen 则提供完全不同的输入 UI。
Yes, it is possible.
I haven't done it myself, but the evidence is in apps that serve as input types. Look up apps such as Swype and 8pen; they serve as different input types, with Swype building on a keyboard similar to the default and 8pen providing a different input UI altogether.