Skip to content

Instantly share code, notes, and snippets.

View mikeseif's full-sized avatar

Michael Seifollahi mikeseif

View GitHub Profile
@mikeseif
mikeseif / SlideTransformer (Zoom out transition)
Last active December 11, 2015 07:38
SlideTransformer I'm using for a presentation, it scales the slides down smoothly by the scaleFactor given in the constructor. @TargetApi set to Honeycomb for lint, I haven't tested on Gingerbread yet and it may need tweaking. Instantiate after setting your adapter for the ViewPager with: mViewPager.setPageTransformer(true, new SlideTransformer(…
/**
* {@link android.support.v4.view.ViewPager.PageTransformer} to scale pages
* as they are slid left / right.
*
* @author michaelseifollahi
*/
@TargetApi(Build.VERSION_CODES.HONEYCOMB)
private class SlideTransformer implements PageTransformer {
private final float fScaleFactor;