-
Notifications
You must be signed in to change notification settings - Fork 370
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How do I create a Sequence? #79
Comments
I figured it out.
EG: // Last
final MaterialIntroView.Builder intro3 = new MaterialIntroView.Builder(this)
.setFocusType(Focus.ALL)
.setDelayMillis(100)
.setTarget(view3)
.setInfoText("Some direction");
.setUsageId("view3") // IMPORTANT
// Second
final MaterialIntroView.Builder intro2 = new MaterialIntroView.Builder(this)
.setFocusType(Focus.ALL)
.setDelayMillis(100)
.setTarget(view2)
.setInfoText("Some info")
.setUsageId("view2") // IMPORTANT
.setListener(s -> intro3.show()); // IMPORTANT
// First
new MaterialIntroView.Builder(this)
.setFocusType(Focus.ALL)
.setDelayMillis(500)
.setTarget(view1)
.setInfoText("Some info")
.setUsageId("view1") // IMPORTANT
.setListener(s -> intro2.show()) // IMPORTANT
.show(); |
Thanks buddy its working |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As the title asks, how exactly do I create a sequence of Intros to be shown? I didn't get a clear indication on how to do it from the code examples given.
The text was updated successfully, but these errors were encountered: