Loading libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleStackView.java +5 −1 Original line number Diff line number Diff line Loading @@ -1644,8 +1644,12 @@ public class BubbleStackView extends FrameLayout if (parent != null && parent != mBubbleContainer) { Log.w(TAG, "Found an unexpected parent for the overflow icon before " + "reordering. Removing it directly. Parent = " + parent); if (parent instanceof PhysicsAnimationLayout) { ((PhysicsAnimationLayout) parent).removeViewNoAnimation(overflow); } else { parent.removeView(overflow); } } mBubbleContainer.reorderView(overflow, mBubbleContainer.getChildCount() - 1 /* index */); } Loading Loading
libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleStackView.java +5 −1 Original line number Diff line number Diff line Loading @@ -1644,8 +1644,12 @@ public class BubbleStackView extends FrameLayout if (parent != null && parent != mBubbleContainer) { Log.w(TAG, "Found an unexpected parent for the overflow icon before " + "reordering. Removing it directly. Parent = " + parent); if (parent instanceof PhysicsAnimationLayout) { ((PhysicsAnimationLayout) parent).removeViewNoAnimation(overflow); } else { parent.removeView(overflow); } } mBubbleContainer.reorderView(overflow, mBubbleContainer.getChildCount() - 1 /* index */); } Loading