diff options
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/recents/RecentsService.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/recents/RecentsService.java b/packages/SystemUI/src/com/android/systemui/recents/RecentsService.java index 0c2c11d..113efe3 100644 --- a/packages/SystemUI/src/com/android/systemui/recents/RecentsService.java +++ b/packages/SystemUI/src/com/android/systemui/recents/RecentsService.java @@ -121,6 +121,7 @@ class SystemUIMessageHandler extends Handler { // Send a broadcast to hide recents Intent intent = new Intent(RecentsService.ACTION_HIDE_RECENTS_ACTIVITY); intent.setPackage(context.getPackageName()); + intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT); if (msg.arg1 != 0) { intent.putExtra(RecentsService.EXTRA_TRIGGERED_FROM_ALT_TAB, true); } @@ -129,6 +130,7 @@ class SystemUIMessageHandler extends Handler { // Send a broadcast to toggle recents Intent intent = new Intent(RecentsService.ACTION_TOGGLE_RECENTS_ACTIVITY); intent.setPackage(context.getPackageName()); + intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT); context.sendBroadcast(intent); // Time this path @@ -140,6 +142,7 @@ class SystemUIMessageHandler extends Handler { // Send a broadcast to start the enter animation Intent intent = new Intent(RecentsService.ACTION_START_ENTER_ANIMATION); intent.setPackage(context.getPackageName()); + intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT); context.sendBroadcast(intent); } } |
