Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions...
If you think the Android project android-slideshow-widget listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
package com.marvinlabs.widget.slideshow.transition;
/*www.java2s.com*/import android.animation.Animator;
import android.view.View;
import com.marvinlabs.widget.slideshow.SlideShowView;
import com.marvinlabs.widget.slideshow.TransitionFactory;
/**
* A transition maker to avoid any transition
* <p/>
* Created by Vincent Mimoun-Prat @ MarvinLabs on 28/05/2014.
*/publicclass NoTransitionFactory implements TransitionFactory {
//==============================================================================================
// INTERFACE IMPLEMENTATION: SlideTransitionFactory
//==
@Override
public Animator getInAnimator(View target, SlideShowView parent, int fromSlide, int toSlide) {
return null;
}
@Override
public Animator getOutAnimator(View target, SlideShowView parent, int fromSlide, int toSlide) {
return null;
}
}