Here is the code I used. I try assigning different colors to the dismiss text and the content text but the colors are always white.
ShowcaseConfig config = new ShowcaseConfig();
config.setDelay(250);
config.setDismissTextColor(Color.parseColor("#009688"));
config.setContentTextColor(Color.BLUE);
MaterialShowcaseSequence sequence = new MaterialShowcaseSequence(this);
sequence.setConfig(config);
sequence.addSequenceItem(normalPlay,
"Sequence #1", "OK");
sequence.addSequenceItem(slowPlay,
"Sequence #2", "OK");
sequence.start();
Here is the code I used. I try assigning different colors to the dismiss text and the content text but the colors are always white.