Intent shortCut = new Intent("com.android.launcher.action.INSTALL_SHORTCUT"); shortCut.putExtra(Intent.EXTRA_SHORTCUT_NAME, context.getString(titleId)); ShortcutIconResource iconRes = ShortcutIconResource.fromContext(context, iconId); Intent shortCutIntent = new Intent(Intent.ACTION_MAIN); shortCutIntent.setComponent(component); shortCutIntent.putExtra(ADD_ICON_TO_OTHER_LAUNCHER, true); shortCut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortCutIntent); shortCut.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, iconRes); shortCut.putExtra("duplicate", false); //不重复创建图标 context.sendBroadcast(shortCut);
public static final String ADD_ICON_TO_OTHER_LAUNCHER = "add_icon_to_other_launcher";
创建快捷方式——解决部分机型创建不了或图标文案不正确
最新推荐文章于 2021-05-28 22:43:07 发布