Java tutorial
//package com.java2s; //License from project: Apache License import android.text.Spannable; import android.text.Spanned; import android.text.style.StyleSpan; public class Main { /** * Apply bold span to a spannable string. */ public static void applyBoldSpan(Spannable spannable, int startIndex, int endIndex) { StyleSpan bold = new StyleSpan(android.graphics.Typeface.BOLD); spannable.setSpan(bold, startIndex, endIndex, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE); } }