Adjust background to text on TextView in android
Try using something like this:
TextView tv = (TextView) findViewById(R.id.myid);
tv.setText(Html.fromHtml("<span style="background: red;">Text</span>"));
It might resolve your issue...
EDIT:
I found the solution here : Set color of TextView span in Android using SpannableString