Skip to content

Repository files navigation

Android Gems

Maven CentralAndroid Arsenal
Get it on Google Play

AppIntro

Android Library to make a cool intro for your app.

Watch YouTube video here.

##How to use Add this to your build.gradle:

repositories {
mavenCentral()
}
dependencies {
compile'com.github.paolorotolo:appintro:2.0.0'
}

Create a new Activity that extends AppIntro:

publicclassMyIntroextendsAppIntro {
// Please DO NOT override onCreate. Use init@Overridepublicvoidinit(BundlesavedInstanceState) {
// Add your slide's fragments here// AppIntro will automatically generate the dots indicator and buttons.addSlide(newFirstSlide(), getApplicationContext());
addSlide(newSecondSlide(), getApplicationContext());
addSlide(newThirdSlide(), getApplicationContext());
addSlide(newFourthSlide(), getApplicationContext());
// OPTIONAL METHODS// Override bar/separator colorsetBarColor(Color.parseColor("#3F51B5"));
setSeparatorColor(Color.parseColor("#2196F3"));
// Hide Skip buttonshowSkipButton(false);
// Turn vibration on and set intensity// NOTE: you will probably need to ask VIBRATE permesssion in ManifestsetVibrate(true);
setVibrateIntensity(30);
}
@OverridepublicvoidonSkipPressed() {
// Do something when users tap on Skip button.
}
@OverridepublicvoidonDonePressed() {
// Do something when users tap on Done button.
}
}

Please, DO NOT override onCreate. Just use init instead

Layout 2

If you want to try new layout (as seen in Google's Photo app), just extend AppIntro2 in your Activity. That's all :)

publicclassMyIntroextendsAppIntro2 {
[...]
}

Animations

AppIntro comes with a Fade animation, that you can activate with:

// Put this method in init()setFadeAnimation();

If you want to create nice parallax effect or your custom animation, create your own PageTransformer and call:

// Put this method in init()setCustomTransformer(transformer);

Click here to see how I did it in the example app.

Example

See example code here on Github. You can also see it live downloading this app from Google Play.

Apps using it

If you are using AppIntro in your app and would like to be listed here, please let me know via email!

Real life examples

Do you need inspiration? A lot of apps are using AppIntro out there:

Planets

Hermes - Material IRC Client

About

Make a cool intro for your Android app.

Resources

Stars

2 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages