@@ -299,7 +299,7 @@ private void animateWobbleInverse(View v) {
299
299
@ TargetApi (Build .VERSION_CODES .HONEYCOMB )
300
300
private ObjectAnimator createBaseWobble (final View v ) {
301
301
302
- if (!isPreL ())
302
+ if (!isPreLollipop ())
303
303
v .setLayerType (LAYER_TYPE_SOFTWARE , null );
304
304
305
305
ObjectAnimator animator = new ObjectAnimator ();
@@ -651,18 +651,13 @@ private boolean isPostHoneycomb() {
651
651
}
652
652
653
653
/**
654
- * The GridView from Android L requires some different setVisibility() logic
655
- * when switching cells. Unfortunately, both 4.4W and the pre-release L
656
- * report 20 for the SDK_INT, but we want to return true for 4.4W and false
657
- * for Android L. So, we check the release name for "L" if we see SDK 20.
658
- * Hopefully, Android L will actually be SDK 21 or later when it ships.
654
+ * The GridView from Android Lollipoop requires some different
655
+ * setVisibility() logic when switching cells.
659
656
*
660
- * @return
657
+ * @return true if OS version is less than Lollipop, false if not
661
658
*/
662
- public static boolean isPreL () {
663
- final int KITKAT_WATCH = 20 ;
664
- return (Build .VERSION .SDK_INT < KITKAT_WATCH ) ||
665
- ((Build .VERSION .SDK_INT == KITKAT_WATCH ) && !"L" .equals (Build .VERSION .RELEASE ));
659
+ public static boolean isPreLollipop () {
660
+ return Build .VERSION .SDK_INT < Build .VERSION_CODES .LOLLIPOP ;
666
661
}
667
662
668
663
private void touchEventsCancelled () {
@@ -735,9 +730,9 @@ private void handleCellSwitch() {
735
730
736
731
SwitchCellAnimator switchCellAnimator ;
737
732
738
- if (isPostHoneycomb () && isPreL ()) //Between Android 3.0 and Android L
733
+ if (isPostHoneycomb () && isPreLollipop ()) //Between Android 3.0 and Android L
739
734
switchCellAnimator = new KitKatSwitchCellAnimator (deltaX , deltaY );
740
- else if (isPreL ()) //Before Android 3.0
735
+ else if (isPreLollipop ()) //Before Android 3.0
741
736
switchCellAnimator = new PreHoneycombCellAnimator (deltaX , deltaY );
742
737
else //Android L
743
738
switchCellAnimator = new LSwitchCellAnimator (deltaX , deltaY );
0 commit comments