How to set typeface for textview programmatically?
To make your textView bold programmatically do:
textView.setTypeface(null, Typeface.BOLD);
To set it back to normal do:
textView.setTypeface(null, Typeface.NORMAL);
To get the current typeface use getTypeface()
http://developer.android.com/reference/android/widget/TextView.html#getTypeface()