Is there a way to set the textStyle attribute of a TextView programmatically? There doesn\'t appear to be a setTextStyle() method.
textStyle
TextView
setTextStyle()
This worked for me
textview.setTypeface(textview.getTypeface(), Typeface.BOLD);
or
textview.setTypeface(Typeface.DEFAULT_BOLD);