Back to project page WizardPager.
The source code is released under:
Apache License
If you think the Android project WizardPager listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.tech.freak.wizardpager.model; /*w ww . ja v a 2 s. c o m*/ import android.support.v4.app.Fragment; import com.tech.freak.wizardpager.ui.NumberFragment; public class NumberPage extends TextPage { public NumberPage(ModelCallbacks callbacks, String title) { super(callbacks, title); } @Override public Fragment createFragment() { return NumberFragment.create(getKey()); } }