Roman Nurik's Wizard pager - how to access collected data?

前端 未结 5 1269
既然无缘
既然无缘 2021-02-09 06:56

I am trying to make a wizard using Roman Nurik\'s library (https://plus.google.com/113735310430199015092/posts/6cVymZvn3f4).

I am having trouble accessing the collected

5条回答
  •  萌比男神i
    2021-02-09 07:27

    Anyone still looking for a solution for this issue you can use following code

        ArrayList reviewItems = new ArrayList();
        for (Page page : mWizardModel.getCurrentPageSequence()) {
            page.getReviewItems(reviewItems);
        }
    

提交回复
热议问题