The following code is available:
Spannable sp = new SpannableString("Hello"); sp.setSpan(new ForegroundColorSpan(Color.RED), 0, sp.length(), 0); textview.setText(sp, BufferType.SPANNABLE);
How to add some more spannable to this text in the same textview?