// 发送广播的意图
Intent intent = new Intent();
intent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");
// 快捷方式要包含3个信息 1.名称2.图标3.干什么
// 名称
intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "Versbilling");
// 图标
intent.putExtra(Intent.EXTRA_SHORTCUT_ICON, BitmapFactory
.decodeResource(getResources(), R.drawable.ic_launcher));
Intent shortcutIntent = new Intent();
// 干什么
shortcutIntent.setAction("android.intent.action.MAIN");
shortcutIntent.addCategory("android.intent.category.LAUNCHER");
shortcutIntent.setClassName(getPackageName(),
"com.asiainfo.versbilling.SplashActivity");
intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
sendBroadcast(intent);
|
原文地址:http://blog.csdn.net/kun5069073/article/details/45027797