2

I want to use the ShowcaseView library to create a tutorial, but for one stage of the tutorial I don't want to highlight anything with the circle. Is this possible with the API?

theblang
  • 10,215
  • 9
  • 69
  • 120

2 Answers2

5

The main way to do this is to set the target as Target.NONE, an example of which is shown in the sample.

Alex Curran
  • 8,818
  • 6
  • 49
  • 55
  • This is answer is useful. I tried putting null to setShowcase(target ,boolean); but gives me a null pointer exception. It took me a long time to figure that i can put "Target.NONE" instead – dens14345 Jan 03 '16 at 02:10
1

As @maxcanna points out here, you can call showcaseView.setShowcaseIndicatorScale(0) after creating the ShowcaseView to accomplish this.

theblang
  • 10,215
  • 9
  • 69
  • 120
  • There's a more standard way in the API, please see my answer! – Alex Curran May 21 '14 at 23:19
  • 1
    @AlexCurran I will note that if you are using `version < 5`, which I currently am for the ghostly hand, then the accepted answer will not work so this answer should be used as a fallback. Correct me if I am wrong Alex. – theblang May 30 '14 at 14:30