summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3
diff options
context:
space:
mode:
authorMario Bertschler <bmario@google.com>2017-06-22 11:36:57 -0700
committerMario Bertschler <bmario@google.com>2017-06-22 11:36:57 -0700
commit46d73d69f06baf24523abdc1f6d2bbd313e89240 (patch)
treebc03df44a67a0d6b88c88f717d84d2ab103df9f5 /src/com/android/launcher3
parentbef710114c04cac2708f51ab93cf05174b410cab (diff)
downloadandroid_packages_apps_Trebuchet-46d73d69f06baf24523abdc1f6d2bbd313e89240.tar.gz
android_packages_apps_Trebuchet-46d73d69f06baf24523abdc1f6d2bbd313e89240.tar.bz2
android_packages_apps_Trebuchet-46d73d69f06baf24523abdc1f6d2bbd313e89240.zip
Disable old ColorExtractionService if feature flag for
LAUNCHER3_GRADIENT_ALL_APPS is enabled Change-Id: I1614897d51ac79293e8b34eee25f212c9ccf4bd2
Diffstat (limited to 'src/com/android/launcher3')
-rw-r--r--src/com/android/launcher3/dynamicui/ExtractionUtils.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/com/android/launcher3/dynamicui/ExtractionUtils.java b/src/com/android/launcher3/dynamicui/ExtractionUtils.java
index 92cb5dc08..cc0e0bed1 100644
--- a/src/com/android/launcher3/dynamicui/ExtractionUtils.java
+++ b/src/com/android/launcher3/dynamicui/ExtractionUtils.java
@@ -29,6 +29,7 @@ import android.support.v4.graphics.ColorUtils;
import android.support.v7.graphics.Palette;
import com.android.launcher3.Utilities;
+import com.android.launcher3.config.FeatureFlags;
import java.util.List;
@@ -47,6 +48,9 @@ public class ExtractionUtils {
* Launcher will be notified in Launcher#onSettingsChanged(String, String).
*/
public static void startColorExtractionServiceIfNecessary(final Context context) {
+ if (FeatureFlags.LAUNCHER3_GRADIENT_ALL_APPS) {
+ return;
+ }
// Run on a background thread, since the service is asynchronous anyway.
Utilities.THREAD_POOL_EXECUTOR.execute(new Runnable() {
@Override
@@ -60,6 +64,9 @@ public class ExtractionUtils {
/** Starts the {@link ColorExtractionService} without checking the wallpaper id */
public static void startColorExtractionService(Context context) {
+ if (FeatureFlags.LAUNCHER3_GRADIENT_ALL_APPS) {
+ return;
+ }
JobScheduler jobScheduler = (JobScheduler) context.getSystemService(
Context.JOB_SCHEDULER_SERVICE);
jobScheduler.schedule(new JobInfo.Builder(Utilities.COLOR_EXTRACTION_JOB_ID,