Valid words: Words that are in Oxford dictionary. An assumption.
I want to verify whether the word formed by user is valid. I hope having a dictionary is a good option. I agree that using spell checker is the wrong option.
I read Android Word Validation). Answer suggesting to load a dictionary into sqlite. I might misunderstood this. If I load my list of words into sqlite, I may miss some words.
So my question is
- Is there any android built-in class which provides list of words. I don't think I can use UserDictionary of Android.
or
- Is there any way to load an entire dictionary to SQLite
or
- If I am wrong, will you please suggest me the best option.