MaterialShowcaseView
MaterialShowcaseView copied to clipboard
Dismiss ShowCaseView with click anywhere
I couldn't find a way to allow the user to dismiss the showcase by clicking anywhere on the screen or add a button to stop showing forever the showcase view.
Hi matrpedreira
Here the flag setDismissOnTouch(true); // it will fullfill the requirement
:+1:
How should this be used when you are using with sequence ? Nvm I've figured out, if anyone need:
sequence.addSequenceItem(
new MaterialShowcaseView.Builder(this)
.setTarget(mButtonThree)
.setDismissText("GOT IT")
.setContentText("This is button three")
.withRectangleShape()
.build()
);
seems it doesn't work with sequences. I was just looking for similar functionality.
i want as like @jd-alexander. that is possible to disable to sequence.
True, it would be good to do the same on Sequences NB: @marianpavel worked so far :)