commit | 1a9c977b2eeeb24745db860c477d075ea58a3188 | [log] [tgz] |
---|---|---|
author | Cyrus Boadway <boadway@google.com> | Tue Jun 22 18:38:36 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Tue Jun 22 18:38:36 2021 +0000 |
tree | 9639a21eb8ff43a352ee7c31d907665efc10f44b | |
parent | aae557cf07a9ac3df875663ac4088424623ba5e7 [diff] | |
parent | e92f4af554526c2c6601d0469d6457a0aeefaa39 [diff] |
Merge "Use icon splash screen when starting activity from widget interaction" into sc-dev am: 9dd0351ed1 am: e92f4af554 Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Launcher3/+/15062776 Change-Id: I8b1eba0032a2427387e6a3fac89ec150e2e9cb35
diff --git a/quickstep/src/com/android/launcher3/uioverrides/QuickstepInteractionHandler.java b/quickstep/src/com/android/launcher3/uioverrides/QuickstepInteractionHandler.java index 50038d9..c2c721a 100644 --- a/quickstep/src/com/android/launcher3/uioverrides/QuickstepInteractionHandler.java +++ b/quickstep/src/com/android/launcher3/uioverrides/QuickstepInteractionHandler.java
@@ -26,6 +26,7 @@ import android.util.Pair; import android.view.View; import android.widget.RemoteViews; +import android.window.SplashScreen; import com.android.launcher3.Utilities; import com.android.launcher3.logging.StatsLogManager; @@ -70,6 +71,7 @@ } } activityOptions.options.setPendingIntentLaunchFlags(Intent.FLAG_ACTIVITY_NEW_TASK); + activityOptions.options.setSplashscreenStyle(SplashScreen.SPLASH_SCREEN_STYLE_ICON); Object itemInfo = hostView.getTag(); if (itemInfo instanceof ItemInfo) { mLauncher.addLaunchCookie((ItemInfo) itemInfo, activityOptions.options);