Quick question...
I'm currently using a library to "showcase" views in order to help a first-time user to my app to know how to perform certain functions. My problem is that the library I'm using, MaterialIntroView, doesn't appear to have any built-in method which I could create a sequence to show one "showcase" after another has finished.
I would like to be able to show another MaterialIntroView after the first has been dismissed by the user's click.
I tried using the library's provided .setListener(new MaterialIntroListener()
method and simply inserted another MaterialIntroView.Builder
within the onClick, but the second showcaseview won't show after the first is dismissed. Obviously not the right way to go about this...
Are there any kinds of built-in Android methods I could use to create some sort of Sequence that can run one batch of code after another is finished? Note that I do not want to have one show up after a certain amount of time - rather, I would like that the next view only shows after the first has been dismissed by the user's click.
Thanks so much for your help! Let me know if there's anything else I should add to clarify.