App添加桌面快捷方式
注释非常详细大家看吧,就是添加一个intent意图,然后发送广播就ok了
/**
* 创建快捷方式
*/
private void createShortCut() {
// 创建快捷方式的Intent
Intent shortcutIntent = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");
// 不允许重复创建
shortcutIntent.putExtra("duplicate", false);
// 快捷方式的名字
shortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME,shortcut_name);
// 快捷方式icon
Parcelable icon = Intent.ShortcutIconResource.fromContext(
MainActivity.this, R.mipmap.shortcut);
//设置icon
shortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, icon);
// 点击快捷图片,运行的程序主入口
Intent intent = new Intent(MainActivity.this,
MainActivity.class);
shortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, intent);
// 发送广播,创建快捷方式
sendBroadcast(shortcutIntent);
Toast.makeText(MainActivity.this,"快捷方式创建",Toast.LENGTH_SHORT).show();
}
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。