summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Mady Mellor <madym@google.com> 2025-03-20 08:58:21 -0700
committer Android (Google) Code Review <android-gerrit@google.com> 2025-03-20 08:58:21 -0700
commitf9307d1144bcfe9b6823dd1dcebc69d6687f29ce (patch)
tree51ce7adff6e4b27918e11298cf6e50b781f4721b
parentc9e4e62d44a1f24f2215cc95dff03165ec00aeb2 (diff)
parenta6392616463b53b2a9b2ec85eaaea25ad42b3895 (diff)
Merge "Make sure IME state is updated on BubbleExpandedView" into main
-rw-r--r--libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleStackView.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleStackView.java b/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleStackView.java
index 4900b6fc77ea..7ae9de8ee65d 100644
--- a/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleStackView.java
+++ b/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleStackView.java
@@ -2959,6 +2959,9 @@ public class BubbleStackView extends FrameLayout
if (mIsExpanded) {
mExpandedViewAnimationController.animateForImeVisibilityChange(visible);
BubbleExpandedView expandedView = getExpandedView();
+ if (expandedView != null) {
+ expandedView.setImeVisible(visible);
+ }
if (mPositioner.showBubblesVertically() && expandedView != null) {
float selectedY = mPositioner.getExpandedBubbleXY(getState().selectedIndex,
getState()).y;