Sequence finished
Is there a callback/method to find out when a sequence was finished? I would need to know when a user has finished the tutorial. Currently I add a listener to the last item, but I don't want to depend on this item in case there is a problem with getting the view (targetview is an item in a recyclerview).
Something like the old
.setShowcaseEventListener(new SimpleShowcaseEventListener() {
@Override
public void onShowcaseViewHide(ShowcaseView showcaseView) {
}
})
Is there a callback/method to find out when a sequence was finished? I would need to know when a user has finished the tutorial. Currently I add a listener to the last item, but I don't want to depend on this item in case there is a problem with getting the view (targetview is an item in a recyclerview).
How do you get for example the second or the last View?