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
This commit is contained in:
Deepanshu Gupta
2014-04-25 20:47:16 -07:00
parent b5cdfd97a5
commit 465cb53ba4

View File

@@ -212,7 +212,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);
}
}