florent37 / TutoShowcase

A simple and Elegant Showcase view for Android
Apache License 2.0
508 stars 89 forks source link

Disabling auto close when showcaseview clicked #19

Closed adnxy closed 7 years ago

adnxy commented 7 years ago

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();
  }
adnxy commented 7 years ago

@florent37 Could you help please?