标签: java android dictionary
我可以检查一个字符串是否是androids系统字典中的英文字典单词?
String word = "myWord";
如何判断myWord是否在英文词典中?
答案 0 :(得分:1)
我没有看到专门访问字典的方法。你可以使用拼写检查服务:
https://developer.android.com/reference/android/service/textservice/SpellCheckerService.Session.html#onGetSuggestions(android.view.textservice.TextInfo,int)
这是一个教程:
https://developer.android.com/guide/topics/text/spell-checker-framework.html