Java tutorial
//package com.java2s; import android.graphics.Typeface; import android.text.SpannableString; import android.text.style.StyleSpan; public class Main { public static CharSequence setTextStyleBold(CharSequence text) { final StyleSpan style = new StyleSpan(Typeface.BOLD); final SpannableString str = new SpannableString(text); str.setSpan(style, 0, text.length(), 0); return str; } }