diff --git a/src/com/android/launcher3/model/LoaderCursor.java b/src/com/android/launcher3/model/LoaderCursor.java index ae5b66ad88..87e8ebf1bb 100644 --- a/src/com/android/launcher3/model/LoaderCursor.java +++ b/src/com/android/launcher3/model/LoaderCursor.java @@ -291,12 +291,16 @@ public class LoaderCursor extends CursorWrapper { // from the db if (TextUtils.isEmpty(info.title)) { - info.title = getTitle(); - } + if (loadIcon) { + info.title = getTitle(); - // fall back to the class name of the activity - if (info.title == null) { - info.title = componentName.getClassName(); + // fall back to the class name of the activity + if (info.title == null) { + info.title = componentName.getClassName(); + } + } else { + info.title = ""; + } } info.contentDescription = mPM.getUserBadgedLabel(info.title, info.user);