use of com.github.amlcurran.showcaseview.SimpleShowcaseEventListener in project ShowcaseView by amlcurran.
the class MemoryManagementTesting method showcase.
private void showcase() {
new ShowcaseView.Builder(this).withMaterialShowcase().setContentText(String.format("Showing %1$d", currentShowcase)).setTarget(new ViewTarget(R.id.buttonBlocked, this)).setShowcaseEventListener(new SimpleShowcaseEventListener() {
@Override
public void onShowcaseViewDidHide(ShowcaseView showcaseView) {
currentShowcase++;
showcase();
}
}).build();
}
Aggregations