Monday, July 12, 2010

Android trick to set a TextView bold

TextView setmebold = ....
setmebold.setTypeface(null, Typeface.BOLD);

that's it!

1 comment:

Anonymous said...

Easy enough, thanks!