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.

Était-ce utile?

La 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.

Autres conseils

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

new BackgroundColorSpan(Color.parseColor("#BFFFC6"))
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top