55import android .view .ViewGroup ;
66import android .util .Log ;
77import androidx .recyclerview .widget .LinearSmoothScroller ;
8- import jp .wasabeef .recyclerview .animators .FadeInAnimator ;
9- import jp .wasabeef .recyclerview .animators .BaseItemAnimator ;
8+ // import jp.wasabeef.recyclerview.animators.FadeInAnimator;
9+ // import jp.wasabeef.recyclerview.animators.BaseItemAnimator;
1010import android .view .animation .OvershootInterpolator ;
1111
1212public class RecyclerView extends androidx .recyclerview .widget .RecyclerView {
1313 static final String TAG = "RecyclerView" ;
1414 public SizeChangedListener sizeChangedListener = null ;
1515 protected com .nativescript .collectionview .SmoothScroller smoothScroller ;
16- public FadeInAnimator animator ;
16+ // public FadeInAnimator animator;
1717 public RecyclerView (Context context ) {
1818 this (context , null );
1919 }
@@ -27,10 +27,10 @@ public RecyclerView(Context context, android.util.AttributeSet attrs) {
2727 setDescendantFocusability (ViewGroup .FOCUS_AFTER_DESCENDANTS );
2828
2929
30- animator = new FadeInAnimator ();
30+ // animator = new FadeInAnimator();
3131 // animator.setInterpolator(new OvershootInterpolator());
32- animator .setMoveDuration (200 );
33- setItemAnimator (animator );
32+ // animator.setMoveDuration(200);
33+ // setItemAnimator(animator);
3434 // Change animations are enabled by default since support-v7-recyclerview v22.
3535 // Need to disable them when using animation indicator.
3636 // animator.setSupportsChangeAnimations(false);
0 commit comments