Wizard Android Library

Encapsulates navigation operations between fragments of an activity using BackStack.

License

License

GroupId

GroupId

me.panavtec
ArtifactId

ArtifactId

wizard
Last Version

Last Version

1.2
Release Date

Release Date

Type

Type

aar
Description

Description

Wizard Android Library
Encapsulates navigation operations between fragments of an activity using BackStack.
Project URL

Project URL

https://github.com/PaNaVTEC/Wizard
Source Code Management

Source Code Management

https://github.com/PaNaVTEC/Wizard

Download wizard

How to add to project

<!-- https://jarcasting.com/artifacts/me.panavtec/wizard/ -->
<dependency>
    <groupId>me.panavtec</groupId>
    <artifactId>wizard</artifactId>
    <version>1.2</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/me.panavtec/wizard/
implementation 'me.panavtec:wizard:1.2'
// https://jarcasting.com/artifacts/me.panavtec/wizard/
implementation ("me.panavtec:wizard:1.2")
'me.panavtec:wizard:aar:1.2'
<dependency org="me.panavtec" name="wizard" rev="1.2">
  <artifact name="wizard" type="aar" />
</dependency>
@Grapes(
@Grab(group='me.panavtec', module='wizard', version='1.2')
)
libraryDependencies += "me.panavtec" % "wizard" % "1.2"
[me.panavtec/wizard "1.2"]

Dependencies

compile (1)

Group / Artifact Type Version
com.android.support » appcompat-v7 jar 23.1.1

Project Modules

There are no modules declared in this project.

#Android Wizard Android Arsenal Maven Central

Logo

##Sample app Logo

##Importing to your project Add this dependency to your build.gradle file:

dependencies {
    compile 'me.panavtec:wizard:1.2'
}

##Basic usage

Create a WizardPage for each fragment you need to present, the only mandatory method to override is "createFragment()":

public class WizardPage1 extends WizardPage<Fragment1> {
    @Override public Fragment1 createFragment() {
        return new Fragment1();
    }
}

Create a wizard in your activity in this way:

@Override protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
        wizard = new Wizard.Builder(this, new WizardPage1())
        .build();
    ...
...

And call init:

wizard.init();

Now the wizard is initalized, to use navigation just call, "navigatePrevious", "navigateNext" or "returnToFirst". You can get the current fragment by calling "getCurrentFragment"

##Advanced usage

###Animation transitions You can declare animations for entering/exiting fragments when creating Wizard in this way:

new Wizard.Builder(this, new WizardPage1(), new WizardPage2(), new WizardPage3())
        .containerId(android.R.id.content)
        .enterAnimation(R.anim.card_slide_right_in)
        .exitAnimation(R.anim.card_slide_left_out)
        .popEnterAnimation(R.anim.card_slide_left_in)
        .popExitAnimation(R.anim.card_slide_right_out)
        .build();

This xml animations are uploaded to the sample project.

###Provide a custom container for fragment navigation if you don't set the containerId attribute, Wizard uses android.R.id.content by default but you can personalize a custom container by calling:

new Wizard.Builder(this, new WizardPage1())
        .containerId(R.id.my_container)

###Customize ActionBar in navigation In the wizard page you can override method "setupActionBar" to customize your actionbar on each navigated fragment, ex:

@Override public void setupActionBar(ActionBar supportActionBar) {
    super.setupActionBar(supportActionBar);
    supportActionBar.hide();
}

In this example when the fragment is navigated, the actionbar will be hidden.

###Option menu in Actionbar

If you have a Fragment that uses actionbar option menus, you can override "hasOptionMenu" and return true to invalidate the option menus when navigating.

###Blocking Fragment

Do you need to block the back navigation of your wizard in determinate steps? It's so easy, just override "allowsBackNavigation" in your WizardPage and add this in your activity:

@Override public void onBackPressed() {
    if (wizard.onBackPressed()) {
        super.onBackPressed();
    }
}

###Listeners You can declare listeners for page changed and for wizard finished events:

WizardPage[] wizardPages = { new WizardPage1(), new WizardPage2(), new WizardPage3() };
new Wizard.Builder(this, wizardPages)
        .containerId(android.R.id.content)
        .pageListener(new WizardPageListener() {
            @Override
            public void onPageChanged(int currentPageIndex, WizardPage page) {
                //Your code for page changed
            }
        })
        .wizardListener(new WizardListener() {
            @Override
            public void onWizardFinished() {
                //Your code for wizard finished
            }
        })
        .build();

###Dagger Tips If you are using Dagger in your project I suggest to use Wizard in this way. ActivityModule:

@Provides @Singleton Wizard provideWizard(ActionBarActivity activity,
                                              SampleWizardPage page) {
    return new Wizard.Builder(activity, page)
            .containerId(android.R.id.content)
            .build();
}
    
@Provides @Singleton SampleWizardPage provideSampleWizardPage(ActionBarActivity activity) {
    return new SampleWizardPage(activity);
}

Activity:

@Inject Wizard wizard;

@Override protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    wizard.init();
}

Fragment:

@Inject Wizard wizard;

@Override protected void someOnClickAction() {
    wizard.navigateNext();
}

Developed by

Christian Panadero Martinez - http://panavtec.me - @PaNaVTEC

License

Copyright 2015 Christian Panadero Martinez

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Versions

Version
1.2
1.1.1
1.1
1.0.1
1.0.0