摘要: 今天遇到一个需求,就是向桌面添加一个快捷方式,使点击时链接到特定的网页。网上找了一下,看到这篇文章http://www.moandroid.com/?p=1699受其启发,实现了该功能。/**在桌面添加快捷方式* @paramicon快捷方式图标* @paramname快捷方式名称* @paramuri快捷方式的intentUri*/publicvoidaddShortcut(Parcelable icon, String name, Uri uri){Intent intentAddShortcut =newIntent(ACTION_ADD_SHORTCUT);//添加名称intentAd 阅读全文
posted @ 2011-11-27 21:56 wanyao 阅读(15600) 评论(0) 推荐(1) 编辑