I've tried to disable auto closing tutorial, and tried with setting TutoShowcase listener and onDismissed callback.Is there any other way to do this? Thanks for your effort and amazing lib!
public void showFeedTutorial(){
TutoShowcase.from(getActivity())
.setContentView(R.layout.tuto_sample)
.on(viewTutorial)
.addRoundRect(0)
.setListener(new TutoShowcase.Listener() {
@Override
public void onDismissed() {
Log.d("Tuto","onDismissed");
}
})
.show();
}
I've tried to disable auto closing tutorial, and tried with setting TutoShowcase listener and onDismissed callback.Is there any other way to do this? Thanks for your effort and amazing lib!