diff options
| author | 2024-02-05 20:58:46 +0000 | |
|---|---|---|
| committer | 2024-02-05 20:58:46 +0000 | |
| commit | 72dc708c55a89080e0a6ae529b818fbe6e034e55 (patch) | |
| tree | c6ea51b8ef6781838f8e86a8a52b4a401a0e9948 | |
| parent | 35d343840541696f0d34574405d8b73d432acf7f (diff) | |
| parent | ead76d7c7060167947ca18a5b2c2f2adf57af355 (diff) | |
Merge "Add some logging about stack visibility in app bubble logs" into main
| -rw-r--r-- | libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleController.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleController.java b/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleController.java index 1a6e48a6c852..621c45378cbe 100644 --- a/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleController.java +++ b/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/BubbleController.java @@ -1267,7 +1267,9 @@ public class BubbleController implements ConfigurationChangeListener, } String appBubbleKey = Bubble.getAppBubbleKeyForApp(intent.getPackage(), user); - Log.i(TAG, "showOrHideAppBubble, with key: " + appBubbleKey); + Log.i(TAG, "showOrHideAppBubble, key= " + appBubbleKey + " stackVisibility= " + + (mStackView != null ? mStackView.getVisibility() : " null ") + + " statusBarShade=" + mIsStatusBarShade); PackageManager packageManager = getPackageManagerForUser(mContext, user.getIdentifier()); if (!isResizableActivity(intent, packageManager, appBubbleKey)) return; |