【发布时间】:2014-07-18 10:33:27
【问题描述】:
我使用 WizarDroid,如果满足某些条件,我打算跳过一个步骤。
我有以下流程:
flow = new WizardFlow.Builder()
.setActivity(this) //First, set the hosting activity for the wizard
.setContainerId(R.id.step_container) //then set the layout container for the steps.
.addStep(WStep1.class) //Add your steps in the order you want them
.addStep(WStep2.class) //to appear and eventually call create()
.addStep(WStep3.class) //to create the wizard flow.
.create();
如果设置了变量,我打算跳过 WStep2。
根据它的教程,我只能禁用前进到下一步,直到我设置它:Controlling wizard flow dynamically
如何告诉向导可以跳过下一步?
【问题讨论】: