ShowcaseView icon indicating copy to clipboard operation
ShowcaseView copied to clipboard

Add API for showing multiple Showcases

Open amlcurran opened this issue 8 years ago • 9 comments

This seems to be a commonly requested feature.

My current thinking on this API is usage along the lines of:

sv = new ShowcaseView.Builder(this)
                .withMaterialShowcase()
                .setTarget(target)
                .setContentTitle("Item one")
                .setContentText("Some description")
sv.thenShow()
    .withMaterialShowcase()
    .setTarget(target2)
    .setContentTitle("Item two")
    .setContentText("Some description")
    .build();

amlcurran avatar Dec 26 '15 13:12 amlcurran