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; //from w w w . j a v a2 s. c o m import android.support.v4.app.Fragment; import com.tech.freak.wizardpager.ui.ImageFragment; public class ImagePage extends TextPage { public ImagePage(ModelCallbacks callbacks, String title) { super(callbacks, title); } @Override public Fragment createFragment() { return ImageFragment.create(getKey()); } public ImagePage setValue(String value) { mData.putString(SIMPLE_DATA_KEY, value); return this; } }