In Android, it is easy to set a style for an entire TextView:
textView.setTypeface(null, Typeface.BOLD_ITALIC);
textView.setTypeface(null, Typeface.BOLD);
textView.setTypeface(null, Typeface.ITALIC);
Is there a way to set a style for specific words (or characters) within the view? I would like to generate a line like:
Year:2012, Language:Armenian, Subtitles:English
Yes, you can use Html.fromHtml to change style of specific word as:
EDIT :
if you have any issue to use
Html.fromHtml(...)then you can go for SpannableString for Creating an String with different fonts,colors or style.