Android 虚拟键盘 IME 的方法
我希望为 android 实现一个虚拟键盘 IME。但是当我去参考 android 提供的软键盘示例时,它说
这段代码注重简单性而不是完整性,所以它应该在 无论如何都不能被认为是一个完整的软键盘实现。
那么,为了实现自定义 IME,我还需要注意哪些其他事项。
谢谢..
I wish to implement a virtual keyboard IME for android. But when I go for references with android's provided softkeyboard sample it says
This code is focused on simplicity over completeness, so it should in
no way be considered to be a complete soft keyboard implementation.
So what are other things that I need to take care to implement custom IME.
Thanks..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
取决于您打算制作哪种键盘。该示例是一个完整的工作键盘 - 尽管不是很先进。当我制作自己的键盘时,我用它作为起点:Maxikeys。它工作正常 - 尽管我认为文档可以改进一点 - 也许只是因为我必须将它与 GLSurfaceView 结合起来。
玩得开心
哈迪·亨内伯格
Depends on what kind of keyboard you plan to make. The sample is a full working keyboard - although not very advanced. I used it as a starting point, when I made my own keyboard: Maxikeys. It worked OK for that - although I think the documentation could be improved a bit - maybe it was just because I had to combine it with a GLSurfaceView.
have fun
Hardy Henneberg