I am implementing a search function using SQLite FULL TEXT SEARCH. I want to present the results with bold query text as Google search does! I have implemented code something li
The text view displays unformatted text because the code tells it to show the contents of the KEY_TEXT_en column, which is unformatted text.
To display the result of the snippet function, give it a name:
SELECT ... snippet(...) AS snippet ...
and use that column for the text view.