1

As you can see, the ShowcaseView appears under the ActionBar

enter image description here

Can anyone point out the problem here?

user2468425
  • 419
  • 2
  • 13

1 Answers1

4

If you're using ShowcaseView 5.3.0 or later, this is the new default behaviour (as users are now expected to use AppCompatActivity with a Toolbar).

You'll want to add this line to your ShowcaseView.Builder creation:

builder.useDecorViewAsParent()

Which should fix the issue!

Alex Curran
  • 8,818
  • 6
  • 49
  • 55