use of com.ramotion.paperonboarding.PaperOnboardingEngine in project paper-onboarding-android by Ramotion.
the class PaperOnboardingActivity method onCreate.
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.onboarding_main_layout);
PaperOnboardingEngine engine = new PaperOnboardingEngine(findViewById(R.id.onboardingRootView), getDataForOnboarding(), getApplicationContext());
engine.setOnChangeListener(new PaperOnboardingOnChangeListener() {
@Override
public void onPageChanged(int oldElementIndex, int newElementIndex) {
Toast.makeText(getApplicationContext(), "Swiped from " + oldElementIndex + " to " + newElementIndex, Toast.LENGTH_SHORT).show();
}
});
engine.setOnRightOutListener(new PaperOnboardingOnRightOutListener() {
@Override
public void onRightOut() {
// Probably here will be your exit action
Toast.makeText(getApplicationContext(), "Swiped out right", Toast.LENGTH_SHORT).show();
}
});
}
Aggregations