I set background in string like that:
spanString.setSpan(new BackgroundColorSpan(color), 0, 3, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
But I would l
In case anyone has this problem, I encountered it. What I had to do is to pass a second parameter into the setText() method. My call looked like
textView.setText(spanned, TextView.BufferType.SPANNABLE);
Hope this helps!