Android unicode u23F8 (pause symbol) color

Viewed 1289

I can't change color of the u23F8 (pause symbol). play symbol looks ok and I can change its color

playPauseButton = new Button(mContext);
playPauseButton.setTextSize(TypedValue.COMPLEX_UNIT_DIP, 72);
playPauseButton.setTextColor(Color.WHITE);

...

if (mPlayer.isPlaying()) {
    playPauseButton.setText("\u23F8");
} else {
    playPauseButton.setText("\u25B6")
}

enter image description here enter image description here

0 Answers
Related