https://developer.android.com/guide/topics/providers/content-provider-basics видите там сниппет?
// Queries the user dictionary and returns results
cursor = contentResolver.query(
UserDictionary.Words.CONTENT_URI, // The content URI of the words table
projection, // The columns to return for each row
selectionClause, // Selection criteria
selectionArgs.toTypedArray(), // Selection criteria
sortOrder // The sort order for the returned rows
)
Прикол Брина и Пэйджа. Доступ к юзерскому словарю уже сто лет как нет и никакой ссылки нет на то, что
NOTE: Starting on API 23, the user dictionary is only accessible through IME and spellchecker.