android桌面快捷网页,Android向桌面添加快捷方式,使其指向特定的网页

今天遇到一个需求,就是向桌面添加一个快捷方式,使点击时链接到特定的网页。网上找了一下,看到这篇文章

受其启发,实现了该功能。

public void

addShortcut(Parcelable icon, String name, Uri uri){

Intent intentAddShortcut = new

Intent(ACTION_ADD_SHORTCUT);

//添加名称

intentAddShortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME,

name);

//添加图标

intentAddShortcut.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,

icon);

//设置Launcher的Uri数据

Intent intentLauncher = new Intent();

intentLauncher.setData(uri);

//添加快捷方式的启动方法

intentAddShortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT,

intentLauncher);

sendBroadcast(intentAddShortcut);

}

当然,你还需要添加一个permission

"com.android.launcher.permission.INSTALL_SHORTCUT"

/>

这里第一个参数Parcelable类型的icon如何获得呢,以下举个例子从Drawable文件夹中获取图片。

Parce

你可能感兴趣的:(android桌面快捷网页)