Alright so I know this has been asked before but the question and answer both didn\'t help me in my situation. What I need to do is simply get all of the data from the review pa
@Derek Smith I have figured out a way to save the data and it works for me.
This is my AbstractWizardModel class block:
@Override
protected PageList onNewRootPageList() {
return new PageList(
new LoginInfoPage(this, "Login Information").setRequired(true));
}
It is similar to the sample provided with Library.
Now in your MainActivity, write as below:
String data = mWizardModel.findByKey("LoginInformation").getData().getString(LoginInfoPage.EMAIL_DATA_KEY);
The main thing to retrieve data is "key". In my case, key is "Login Information" which is also your title.
Hope it helps.
Regards,