public void createShortCut()
{
//创建快捷方式的Intent
Intent shortcutintent = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");
//允许重复创建
shortcutintent.putExtra("duplicate", true);
//需要现实的名称
shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.hello_world));
//快捷图片
Parcelable icon = Intent.ShortcutIconResource.fromContext(getApplicationContext(), R.drawable.ic_launcher);
shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, icon);
//点击快捷图片,运行的程序主入口
Intent intena = new Intent();
ComponentName name = new ComponentName("","");
intena.setComponent(name);
shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, intena);
//发送广播。OK
sendBroadcast(shortcutintent);
}
创建快捷方式
最新推荐文章于 2023-09-01 21:12:55 发布