如何将我的词典应用到我开发的软键盘上
我开发了软键盘来支持另一种语言。 我还启用了文本预测,但在打字时它不会返回任何预测的单词。 所以我已经创建了 .xml 字典并已将其转换为 .dict 文件
所以,问题是,如何应用此字典来与我的软键盘一起使用?
I have developed my softkeyboard for support another language.
And I also enabled text prediction on it but it doesn't return any predicted word while typing.
So I have created my .xml dictionary and already convert it to be .dict file
So, question is, how can I apply this dictionary to work with my softkeyboard?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您有一个编辑框,并且需要在字典中搜索建议。
这两篇文章对此进行了很好的解释
您将需要创建一个 ContentProvider。您可以使用此应用程序作为参考。
I assume you have an edit box and you need to search the dictionary for suggestions.
This is well explained in these two articles
You will need to create a ContentProvider. You can use this application as a reference.