MaterialShowcaseView
MaterialShowcaseView copied to clipboard
Dismiss ShowCaseView with only click target
I couldn't find a way to allow the user to dismiss the showcase by clicking target and hide dismiss button.
Same issue here.
MaterialShowCaseView showCaseView = new MaterialShowcaseView.Builder(activity)
.setTarget(targetView)
.setContentText("Context text goes here")
.setTargetTouchable(true) // this is important
.setDismissOnTargetTouch(true) // this is important
.build();
and remember to disable your button (targetView) because it calls onClick and you don't want that.
What about sequence? @mslalith