diff --git a/packages/SystemUI/src/com/android/systemui/bubbles/BubbleExpandedView.java b/packages/SystemUI/src/com/android/systemui/bubbles/BubbleExpandedView.java index 2bfe015c2787b..1211fb491ced4 100644 --- a/packages/SystemUI/src/com/android/systemui/bubbles/BubbleExpandedView.java +++ b/packages/SystemUI/src/com/android/systemui/bubbles/BubbleExpandedView.java @@ -495,12 +495,9 @@ public class BubbleExpandedView extends LinearLayout { } final float alpha = visibility ? 1f : 0f; - if (alpha == mActivityView.getAlpha()) { - return; - } - mPointerView.setAlpha(alpha); - if (mActivityView != null) { + + if (mActivityView != null && alpha != mActivityView.getAlpha()) { mActivityView.setAlpha(alpha); mActivityView.bringToFront(); }