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