/parallaxListView

Android library w/ demo project that let you expand a header image (if it is into a ViewPager too) on scrolling up from a ListView/ScrollView

Primary LanguageJava

ParallaxListView

##Issues

Stories ready to be worked on ![Stories in progress](https://badge.waffle.io/barriosnahuel/parallaxListView.png?label=in progress&title=In Progress)

##Demo

A ListView demo with a parallax effect header like Path.

The key of the effect is : android:scaleType="centerCrop"

request: android:minSdkVersion="9"

##How to include it in your project?

First of all you have to download the AAR file, then add the container directory as a repository by adding the following code block inside your depdendencies section:

repositories {
    flatDir {
        dirs '../aars'
    }
}

After that, just add the library with all its required libraries inside:

compile('com.barriosnahuel:expandonscroll:1.0@aar') {
    compile 'com.github.bumptech.glide:glide:3.4.0'
}

That's all!