From ebf8f37515c23a167cef2bb8cff04854c52fd35b Mon Sep 17 00:00:00 2001 From: Andy Mast Date: Tue, 24 Jun 2014 13:47:17 -0700 Subject: Use ArrayListExtra for broadcasting theme changes [2/2] Change-Id: I2931915eba0cde2d66577bcb83ba8521ce034158 --- AndroidManifest.xml | 3 -- .../android/launcher3/ThemeChangedReceiver.java | 45 ++++++++++++++++++---- 2 files changed, 38 insertions(+), 10 deletions(-) diff --git a/AndroidManifest.xml b/AndroidManifest.xml index b26dfcf91..8262f4886 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -189,9 +189,6 @@ - - - diff --git a/src/com/android/launcher3/ThemeChangedReceiver.java b/src/com/android/launcher3/ThemeChangedReceiver.java index 19c2e226d..c7a98c5ab 100644 --- a/src/com/android/launcher3/ThemeChangedReceiver.java +++ b/src/com/android/launcher3/ThemeChangedReceiver.java @@ -19,22 +19,53 @@ import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; -import java.io.File; - import static com.android.launcher3.WidgetPreviewLoader.CacheDb.DB_NAME; +import java.io.File; +import java.util.ArrayList; + public class ThemeChangedReceiver extends BroadcastReceiver { + private static final String EXTRA_COMPONENTS = "components"; + + public static final String MODIFIES_ICONS = "mods_icons"; + public static final String MODIFIES_FONTS = "mods_fonts"; + public static final String MODIFIES_OVERLAYS = "mods_overlays"; + public void onReceive(Context context, Intent intent) { - LauncherAppState app = LauncherAppState.getInstance(); - clearWidgetPreviewCache(context); - app.recreateWidgetPreviewDb(); - app.getIconCache().flush(); - app.getModel().forceReload(); + // components is a string array of the components that changed + ArrayList components = intent.getStringArrayListExtra(EXTRA_COMPONENTS); + if (isInterestingThemeChange(components)) { + LauncherAppState app = LauncherAppState.getInstance(); + clearWidgetPreviewCache(context); + app.recreateWidgetPreviewDb(); + app.getIconCache().flush(); + app.getModel().forceReload(); + } } + /** + * We consider this an "interesting" theme change if it modifies icons, overlays, or fonts. + * @param components + * @return + */ + private boolean isInterestingThemeChange(ArrayList components) { + if (components != null) { + for (String component : components) { + if (component.equals(MODIFIES_ICONS) || + component.equals(MODIFIES_FONTS) || + component.equals(MODIFIES_OVERLAYS)) { + return true; + } + } + } + return false; + } + + /** * Normally we could use context.deleteDatabase() but this db is in cache/ so we'll * manually delete it and the journal ourselves. + * * @param context */ private void clearWidgetPreviewCache(Context context) { -- cgit v1.2.3