核心代码
Intent shortcut =newIntent("com.android.launcher.action.INSTALL_SHORTCUT");
//不允许重复创建
shortcut.putExtra("duplicate",false)
//需要实现的名称
shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, strName);
//快捷图片
Parcelable icon = Intent.ShortcutIconResource.formContext(context, iconResId);
shortcut.putExtra(Intent.EXTRA_SHORTCUT_RESOURCE, icon);
//点击快捷图片,运行程序
Intent intent =newIntent(context.getApplicationContext(),MainActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);//Android启动模式 清除当前activity main 及以上的 activity 并从新创建 MainActivity;
shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, intent);
需要注意
被启动的 activity 必须是默认启动的ac
默认启动的标签 ,否则会提示该应未安装 或者 app isn’t installed
网友评论