Set the listeners to null on unregister

In some occasions, launcher leaks through DesktopVisibilityController
and SplitFromDesktopController. It seems that we don't set the listeners
to null after we unregister which might be the reason why they hold on
to the launcher activity.

Bug: 332339792
Test: m
Flag: ACONFIG com.android.window.flags.enable_desktop_windowing_mode TEAMFOOD
Change-Id: If52ae87cec959264109e59b1144679183c8fedcc
This commit is contained in:
Orhan Uysal
2024-05-16 09:04:01 +00:00
parent 8b0d1fb614
commit 2552cc78ed
2 changed files with 2 additions and 0 deletions

View File

@@ -111,6 +111,7 @@ public class DesktopVisibilityController {
*/
public void unregisterSystemUiListener() {
SystemUiProxy.INSTANCE.get(mLauncher).setDesktopTaskListener(null);
mDesktopTaskListener = null;
}
/**

View File

@@ -983,6 +983,7 @@ public class SplitSelectStateController {
void onDestroy() {
SystemUiProxy.INSTANCE.get(mLauncher).unregisterSplitSelectListener(
mSplitSelectListener);
mSplitSelectListener = null;
}
/**