I have a long text in one of the strings at strings.xml. I want to make bold and change the color of some words in that text.
How can I do it?
You could basically use html tags in your string resource like:
We are so glad to see you.
And use Html.fromHtml or use spannable, check the link I posted.
Old similar question: Is it possible to have multiple styles inside a TextView?