stackoverflow
stackoverflow

Reputation: 19434

Android How do I read users dictionary to scan for words?

I'm writig a program to help with scrabble. I want to harness the user dictionary to scan through. How do I access this file to scan through?

Upvotes: 2

Views: 3270

Answers (1)

Sam
Sam

Reputation: 86948

You will want to use the UserDictionary class.

Here is one example: How to query UserDictionary content provider on Android?

Here is some Android documentation: Content Provider Basics (It uses the UserDictionary as the example ContentProvider, which is perfect for your question.)

Upvotes: 4

Related Questions