summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarcos Marado <mmarado@cyngn.com>2016-10-04 12:03:59 +0100
committerMarcos Marado <mmarado@cyngn.com>2016-10-04 12:07:46 +0100
commitabc57d4d5d7f408b26859de2eda60d39cc474c3d (patch)
treecb0cf611f3c28e0b2c48acf50f80057314f0901c
parenta50bf6464e915fd88a377f52b89aa1dc5e017a53 (diff)
downloadandroid_packages_apps_Trebuchet-abc57d4d5d7f408b26859de2eda60d39cc474c3d.tar.gz
android_packages_apps_Trebuchet-abc57d4d5d7f408b26859de2eda60d39cc474c3d.tar.bz2
android_packages_apps_Trebuchet-abc57d4d5d7f408b26859de2eda60d39cc474c3d.zip
IconCache: Simplify application of custom titles from STK
Instead of trying to deal with multiple icon-cache conditions, just apply the custom title to the entry right before using it. This deals with hot-swap, card exchange, and similar weird issues that were hitting stale cache entries, and is less aggressive than outright flushing the cache with every STK refresh. Issue: FEIJAO-815 Change-Id: Iacd7da820f0404b4dc12394d9c9a571bdceadeb0
-rw-r--r--src/com/android/launcher3/IconCache.java20
1 files changed, 8 insertions, 12 deletions
diff --git a/src/com/android/launcher3/IconCache.java b/src/com/android/launcher3/IconCache.java
index 59239be90..b30ff2d6e 100644
--- a/src/com/android/launcher3/IconCache.java
+++ b/src/com/android/launcher3/IconCache.java
@@ -597,12 +597,7 @@ public class IconCache {
if (DEBUG) Log.d(TAG, "using package default icon for " +
componentName.toShortString());
entry.icon = packageEntry.icon;
- if (isCustomTitle) {
- entry.title = ((LauncherApplication) mContext)
- .getStkAppName();
- } else {
- entry.title = packageEntry.title;
- }
+ entry.title = packageEntry.title;
entry.contentDescription = packageEntry.contentDescription;
}
}
@@ -615,15 +610,16 @@ public class IconCache {
}
if (TextUtils.isEmpty(entry.title) && info != null) {
- if (isCustomTitle) {
- entry.title = ((LauncherApplication) mContext)
- .getStkAppName();
- } else {
- entry.title = info.getLabel();
- }
+ entry.title = info.getLabel();
entry.contentDescription = mUserManager.getBadgedLabelForUser(entry.title, user);
}
}
+
+ if (isCustomTitle) {
+ entry.title = ((LauncherApplication) mContext)
+ .getStkAppName();
+ }
+
return entry;
}