-3

I'm developing a word-building game (similar to scrabble) that takes a user's input and checks whether it is a valid word or not. First, I thought of using an offline dictionary database with SQLite.

But later I realized that there's a built-in dictionary (that predicts the words that are being entered in the text fields).

Is there any way that I can use this built-in dictionary to validate words entered in my app?

mpromonet
  • 11,326
  • 43
  • 62
  • 91
  • Why the downvotes? Whether possible or not, this seems to be a valid question... – Codebender Aug 25 '15 at 16:43
  • 1
    This question has already been answered [here](http://stackoverflow.com/questions/23428401/android-word-validation?rq=1) – GrizzlyManBear Aug 25 '15 at 16:44
  • 1
    Downvotes might be based on: no signs of prior research ... and not much evidence of "own work". The question reads more or less like "I have a great idea; please somebody else show me how to do it". – GhostCat Aug 25 '15 at 16:46
  • Who predicts the words entered in text fields varies. It is usually Google, via google Keyboard or google search and i don't know how much of that you can access. – Laurentiu L. Aug 25 '15 at 16:47
  • @Jagermeister - I **did** try to find the solution on my own. But none of the articles I found answered my question. This is my first question and Next time I'll try to do a better research. Thanks for the suggestion though. – bharat chamakuri Aug 25 '15 at 17:20
  • @BearArmatis - Yeah I've checked that post earlier but all the answers suggested that using a dictionary database is better. Also I was hoping that I might get updated answers as that question was asked an year ago :) . – bharat chamakuri Aug 25 '15 at 17:27

1 Answers1

-1

Perhaps what you are searching Android Spelling Cheker, here is an example.

Bruno Caceiro
  • 7,035
  • 1
  • 26
  • 45
  • I believe that is not the answer, Spell checker is a global thing - no one wants to install spellchecker instead of game! He needs dictionary, a lot could be found on the net. – Viktor Yakunin Aug 25 '15 at 17:06