kaloer wrote: > Btw, this is how the app works: > > There is a text view and a button. The user will enter a single word, > and when he presses the button, the application checks whether this is > actually a real word.
You might wish to do some research on how spell checkers and dictionaries are traditionally implemented. I would be rather surprised if many used a SQL database. For example: http://jaspell.sourceforge.net/ They use ternary search trees for storing their dictionary. Moreover, they have an implementation of such trees in Java under a BSD license. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android App Developer Books: http://commonsware.com/books.html --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Beginners" group. To post to this group, send email to android-beginners@googlegroups.com To unsubscribe from this group, send email to android-beginners-unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en -~----------~----~----~----~------~----~------~--~---