MaterialShowcaseView
MaterialShowcaseView copied to clipboard
Floating action button. Showcaseview does not show up. No errors thrown.
Showcaseview does not show up. No errors thrown. Below is the code that I am trying to execute.
new MaterialShowcaseView.Builder(this)
.setTarget(findViewById(R.id.fab_button))
.setDismissText("GOT IT")
.setContentText("Click here to search.")
.setDelay(300) // optional but starting animations immediately in onCreate can make them choppy
.singleUse(TAG) // provide a unique ID used to ensure it is only shown once
.show();
i have same problem. any solution ?
I had the same problem and made it work using:
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
// Put it on top of everything
showcaseView.setElevation(20);
}
showcaseView.show();
+1 for the issue, and thank you Steve for the workaround!