<How to remove the badge from created shortcut ico...
# stackoverflow
u
How to remove the badge from created shortcut icon in android app? How to remove the badge in app shortcut icon in android? When I create app shortcut programmatically, along with the icon specified for shortcut, app icon comes at the bottom corner of the icon. How to remove this badge from icon. ShortcutManager shortcutManager = context.getSystemService(ShortcutManager.class); if (shortcutManager.isRequestPinShortcutSupported()) { ShortcutInfo pinShortcutInfo; pinShortcutInfo = new ShortcutInfo.Builder(context, "icon")...