From a40829a4a86294237f5ea665e670ee100d9c02e5 Mon Sep 17 00:00:00 2001 From: Michael Jurka Date: Wed, 16 Feb 2011 18:02:45 -0800 Subject: [PATCH] Add comment about an earlier All Apps bug fix (earlier change was Icfdb096c: Fix bug where only holo outlines were visible in All Apps sometimes) --- src/com/android/launcher2/PagedView.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/com/android/launcher2/PagedView.java b/src/com/android/launcher2/PagedView.java index cb952356b4..159e821d51 100644 --- a/src/com/android/launcher2/PagedView.java +++ b/src/com/android/launcher2/PagedView.java @@ -546,6 +546,11 @@ public abstract class PagedView extends ViewGroup { alpha = 1.0f; } + // Due to the way we're setting alpha on our children in PagedViewCellLayout, + // this optimization causes alpha to not be properly updated sometimes (repro + // case: in xlarge mode, swipe to second page in All Apps, then click on "My + // Apps" tab. the page will have alpha 0 until you swipe it). Removing + // optimization fixes the issue, but we should fix this in a better manner //if (Float.compare(alpha, layout.getAlpha()) != 0) { layout.setAlpha(alpha); //}