Fixing flash when you swipe a page and go into All Apps (Bug 10971209)

Change-Id: I7d63012409c3b084cc81095a243a2d492594bb5f
This commit is contained in:
Winson Chung
2013-10-07 18:21:59 -07:00
parent f4bd23662d
commit 296ab0fde6

View File

@@ -1909,7 +1909,7 @@ public class Workspace extends SmoothPagedView
getResources().getInteger(R.integer.config_appsCustomizeWorkspaceShrinkTime);
for (int i = 0; i < getChildCount(); i++) {
final CellLayout cl = (CellLayout) getChildAt(i);
boolean isCurrentPage = (i == mCurrentPage);
boolean isCurrentPage = (i == getNextPage());
float initialAlpha = cl.getShortcutsAndWidgets().getAlpha();
float finalAlpha = stateIsSmall ? 0f : 1f;