Loading packages/SystemUI/src/com/android/systemui/qs/customize/QSCustomizer.java +11 −7 Original line number Diff line number Diff line Loading @@ -90,17 +90,21 @@ public class QSCustomizer extends LinearLayout implements AnimatorListener, OnCl } public void show(int x, int y) { if (!isShown) { isShown = true; mPhoneStatusBar.getStatusBarWindow().addView(this); setTileSpecs(); mClipper.animateCircularClip(x, y, true, this); new TileQueryHelper(mContext, mHost).setListener(mTileAdapter); } } public void hide(int x, int y) { if (isShown) { isShown = false; mClipper.animateCircularClip(x, y, false, this); } } public boolean isCustomizing() { return isShown; Loading Loading
packages/SystemUI/src/com/android/systemui/qs/customize/QSCustomizer.java +11 −7 Original line number Diff line number Diff line Loading @@ -90,17 +90,21 @@ public class QSCustomizer extends LinearLayout implements AnimatorListener, OnCl } public void show(int x, int y) { if (!isShown) { isShown = true; mPhoneStatusBar.getStatusBarWindow().addView(this); setTileSpecs(); mClipper.animateCircularClip(x, y, true, this); new TileQueryHelper(mContext, mHost).setListener(mTileAdapter); } } public void hide(int x, int y) { if (isShown) { isShown = false; mClipper.animateCircularClip(x, y, false, this); } } public boolean isCustomizing() { return isShown; Loading