WizarDroid
WizarDroid copied to clipboard
*Deprecated* A lightweight Android library for creating step by step wizards
I need to send send data from activity to BasicWizardLayout. Can anyone tell me how to do that?
I have 3 step wizard. All 3 steps are defined as required. When user input correct values on the first step I call notifyCompleted(), as a result step view is...
I've been following the docs to implement a Wizard but now if I click the back button the app crashes `FATAL EXCEPTION: main Process: com.minimfit.minimfit, PID: 6847 java.lang.IllegalStateException: FragmentManager is...
It would be nice if we could describe some fields with `@ContextVariable` in the parent class. For example: ``` class FooStep extends HszWizardStep { @ContextVariable protected String foo; } class...
I am calling the wizard fragment from my one activity. Currently I only use one Activity for all views using the following `getSupportFragmentManager().beginTransaction() .replace(R.id.nav_container, new RegistrationWizard()) .commit();` This works fine...
Hello, I am not convinced this isn't my implementation, but it seems that the notifyCompleted() method is causing interference with EditText field focus. I have a test on whether a...
Let's assume we've got this simple implementation: ``` public class ProfileWizardFragment extends WizardFragment { @Override public void onStepChanged() { super.onStepChanged(); Log.d("onStepChanged()", String.valueOf(wizard.getCurrentStepPosition())); } @OnClick(R.id.next_button) public void next() { wizard.goNext(); Log.d("next()",...
Hi, first of all thanks for the great library. I would like to see support for material design button bar. I am currently using the following layout xml. Maybe we...
Is there a way to have functionality similar to notifyCompleted() and notifyIncomplete() for previousButton? previousButton cannot be manipulated as it is declared privately within WizarDroid.