Open adnxy opened 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(); }
It appears that animations only play once. Animations should probably repeat continuously like pointed out in Issue #11
How can I animate apperance of ShowcaseView?I've tried static method from your samples (animate(true) ) but it doesn't work.