I am implementing Material Tap target prompt library to make a tutorial screen. I want to focus on my spinner
, this is my code:
new MaterialTapTargetPrompt.Builder(MainActivity.this)
.setTarget(spin_01)
.setPrimaryText("Welcome")
.setSecondaryText("You can select the bill type by clicking here")
.setPromptBackground(new RectanglePromptBackground())
.setPromptFocal(new RectanglePromptFocal())
.show();
This is my output:
As you can see, unlike the examples shown in the documentation page, my focused element has a complete white foreground. How do I resolve this issue? Please help me.