Android examples for Graphics:Spannable
Set a span over the entire spannable.
import android.text.Spannable; import android.text.Spanned; public class Main{ /**//from www . j a v a2 s. co m * Set a span over the entire spannable. * @param spannable * @param what */ public static void setWholeSpan(Spannable spannable, Object what) { spannable.setSpan(what, 0, spannable.length(), Spanned.SPAN_INCLUSIVE_EXCLUSIVE); } }