android创建桌面快捷方式
仿照微信或是淘宝网,发送快捷方式到桌面,主要代码如下://安装的IntentIntentshortcut=newIntent("com.android.launcher.action.INSTALL_SHORTCUT");//快捷名称shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME,tName);//快捷图标是允许重复shortcut.putExtra("duplicate",false);IntentshortcutIntent=newIntent(Intent.ACTION_MAIN);shor