 |
android - Set TextView style (bold or italic) - Stack Overflow
Programmatialy: You can do programmatically using setTypeface(): textView.setTypeface(null, Typeface.NORMAL); // for Normal Text textView.setTypeface(null, Typeface.BOLD); // for Bold only textView.setTypeface(null, Typeface.ITALIC); // for Italic ...
stackoverflow.com |
 |