Use ApplicationInfo only when not in edit mode [DO NOT MERGE]

When running in edit mode, do not use the application info to get the
icon, since it will be null.

Change-Id: I174e6126ddca341d06c5f04939470ef52f0e771c
(cherry picked from commit 90ce58ecfd)
This commit is contained in:
Deepanshu Gupta
2014-04-25 20:47:16 -07:00
parent 85f53c3335
commit 5268248e07

View File

@@ -207,7 +207,7 @@ public class ActionBarView extends AbsActionBarView {
Log.e(TAG, "Activity component name not found!", e);
}
}
if (mIcon == null) {
if (mIcon == null && !isInEditMode()) {
mIcon = appInfo.loadIcon(pm);
}
}