voidRy
voidRy

Reputation: 684

Want to do spell checking in Android 2.2

Want to know about any library for spell checking in android. I have looked at http://code.google.com/p/google-api-spelling-java/ and jOrtho but none works in android.

Is there a way to implement spell checking in android , as i can't find any library .

Upvotes: 2

Views: 756

Answers (1)

NoBugs
NoBugs

Reputation: 9496

A simple way to do it would be to detect each space-separated word, then check in a 'dictionary' or 'map' of words. You could check if it is a real word by looking in a file with all words, such as /usr/share/dict/words on a unix/linux system. The link here may also help.

Upvotes: 1

Related Questions