A simple slider view of images for Android applications.
![alt tag] (https://raw.githubusercontent.com/jeancsanchez/PhotoViewSlider/master/PhotoViewSlider.gif)
##Gradle Dependency
dependencies {
// ... other dependencies
compile 'io.github.jeancsanchez.photoviewslider:photoviewslider:1.1.0'
}
##Maven
<dependency>
<groupId>io.github.jeancsanchez.photoviewslider</groupId>
<artifactId>photoviewslider</artifactId>
<version>1.1.0</version>
<type>pom</type>
</dependency>
##Getting Started You only need a PhotosViewSlider on your Layout Activity.
<br.com.jeancsanchez.photoviewslider.PhotosViewSlider
android:id="@+id/photosViewSlider"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
##Code Setup Create a list of Photo objects and set the values to it.
photoViewSlider = (PhotosViewSlider) findViewById(R.id.photosViewSlider);
photoList = new ArrayList<>();
Photo photo1 = new Photo();
photo1.setId(1);
photo1.setImage("http://modmyi.com/attachments/forums/iphone-4-4s-new-skins-themes-launches/555329d1322802429-ice-cream-sandwich-android-4-0-a-android_ice_cream_sandwich_electronic_bytes.png");
photo1.setDescription("Android Ice Cream Sandwich");
Photo photo2 = new Photo();
photo2.setId(2);
photo2.setImage("http://cdn.gigjets.com/wp-content/uploads/2012/10/Android-Jelly-Bean-Logo-Sort-Of.jpg");
photo2.setDescription("Android Jelly Bean");
photoList.add(photo1);
photoList.add(photo2);
###Init the photos
photoViewSlider.initializePhotos(photoList, 3);
###Change transition animation anytime
photoViewSlider.setTechniqueAnimation(Techniques.BounceIn);
##Thanks
- Picasso
- [Android View Animations] (https://github.com/daimajia/AndroidViewAnimations)