Skip to content
This repository was archived by the owner on Jan 29, 2021. It is now read-only.

Commit e3db139

Browse files
committedDec 8, 2014
Update Lollipop SDK version checking
Lollipop will properly report 21 as its version now
1 parent 013f63d commit e3db139

File tree

1 file changed

+8
-13
lines changed

1 file changed

+8
-13
lines changed
 

‎dynamicgrid/src/org/askerov/dynamicgrid/DynamicGridView.java

+8-13
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ private void animateWobbleInverse(View v) {
299299
@TargetApi(Build.VERSION_CODES.HONEYCOMB)
300300
private ObjectAnimator createBaseWobble(final View v) {
301301

302-
if (!isPreL())
302+
if (!isPreLollipop())
303303
v.setLayerType(LAYER_TYPE_SOFTWARE, null);
304304

305305
ObjectAnimator animator = new ObjectAnimator();
@@ -651,18 +651,13 @@ private boolean isPostHoneycomb() {
651651
}
652652

653653
/**
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.
659656
*
660-
* @return
657+
* @return true if OS version is less than Lollipop, false if not
661658
*/
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;
666661
}
667662

668663
private void touchEventsCancelled() {
@@ -735,9 +730,9 @@ private void handleCellSwitch() {
735730

736731
SwitchCellAnimator switchCellAnimator;
737732

738-
if (isPostHoneycomb() && isPreL()) //Between Android 3.0 and Android L
733+
if (isPostHoneycomb() && isPreLollipop()) //Between Android 3.0 and Android L
739734
switchCellAnimator = new KitKatSwitchCellAnimator(deltaX, deltaY);
740-
else if (isPreL()) //Before Android 3.0
735+
else if (isPreLollipop()) //Before Android 3.0
741736
switchCellAnimator = new PreHoneycombCellAnimator(deltaX, deltaY);
742737
else //Android L
743738
switchCellAnimator = new LSwitchCellAnimator(deltaX, deltaY);

0 commit comments

Comments
 (0)