Question

textToSpan.setSpan(new BackgroundColorSpan(0xBFFFC600), o, o + termLength, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);

for some reason the color is always yellow. I have tried two greenish colors :

0xBFFFC6 and 0x99FF99

I sense I am messing up somewhere with the order of the colors.

Was it helpful?

Solution 2

The actual solution was to get the color like so:

getResources().getColor(R.color.LightGreen)

I still do not know why it has to be like this.

OTHER TIPS

You need to parse the color before giving it to BackgroundColorSpan:

new BackgroundColorSpan(Color.parseColor("#BFFFC6"))
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top