florent37 / TutoShowcase

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

How to animate showcaseview #20

Open adnxy opened 7 years ago

adnxy commented 7 years ago

How can I animate apperance of ShowcaseView?I've tried static method from your samples (animate(true) ) but it doesn't work.

  public void showFeedTutorial(){
    TutoShowcase.from(getActivity())
        .setContentView(R.layout.tuto_sample)
        .on(viewTutorial)

        .addRoundRect(0)
        .onClickContentView(R.id.circleLogin, new View.OnClickListener() {
          @Override
          public void onClick(View view) {

            navigateTo(MarketActivity.class);
          }
        })
        .show();
  }
rayliverified commented 6 years ago

It appears that animations only play once. Animations should probably repeat continuously like pointed out in Issue #11