I am implementing a text editor (not using TextView or EditText components) and when a word is misspelled I would like to bring up a popup similar to what TextViews have after you tap on the word. Is this UI the TextView brings up available in the android framework to use or will I have to create my own custom UI for this?
I can't seem to find anything after searching through the documentation. All I can find is a spell checker framework which just tells you if a word is misspelled and gives you an array of suggestions. Is there something in the input method service that might provide this UI?
Edit: I also need the "Add To Dictionary" option in the context menu so the user can add new words to the user dictionary. Similar to how TextView does it.