android 創(chuàng)建 刪除桌面快捷方式
創(chuàng)建
/**
為程序創(chuàng)建桌面快捷方式
*/
private void addShortcut(){
Intent shortcut = new Intent(“com.android.launcher.action.INSTALL_SHORTCUT”);
//快捷方式的名稱
shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.app_name));
shortcut.putExtra(“duplicate”, false); //不允許重復(fù)創(chuàng)建
//指定當(dāng)前的Activity為快捷方式啟動的對象: 如 com.everest.video.VideoPlayer
//注意: ComponentName的第二個參數(shù)必須加上點(diǎn)號(.),否則快捷方式無法啟動相應(yīng)程序
ComponentName comp = new ComponentName(this.getPackageName(), “.“+this.getLocalClassName());
shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(Intent.ACTION_MAIN).setComponent(comp));
//快捷方式的圖標(biāo)
ShortcutIconResource iconRes = Intent.ShortcutIconResource.fromContext(this, R.drawable.icon);
shortcut.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, iconRes);
sendBroadcast(shortcut);
}/**
為程序創(chuàng)建桌面快捷方式
*/
private void addShortcut(){
Intent shortcut = new Intent(“com.android.launcher.action.INSTALL_SHORTCUT”);
//快捷方式的名稱
shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.app_name));
shortcut.putExtra(“duplicate”, false); //不允許重復(fù)創(chuàng)建
//指定當(dāng)前的Activity為快捷方式啟動的對象: 如 com.everest.video.VideoPlayer
//注意: ComponentName的第二個參數(shù)必須加上點(diǎn)號(.),否則快捷方式無法啟動相應(yīng)程序
ComponentName comp = new ComponentName(this.getPackageName(), “.“+this.getLocalClassName());
shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(Intent.ACTION_MAIN).setComponent(comp));
//快捷方式的圖標(biāo)
ShortcutIconResource iconRes = Intent.ShortcutIconResource.fromContext(this, R.drawable.icon);
shortcut.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, iconRes);
sendBroadcast(shortcut);
}
2, 刪除
/**
刪除程序的快捷方式
*/
private void delShortcut(){
Intent shortcut = new Intent(“com.android.launcher.action.UNINSTALL_SHORTCUT”);
//快捷方式的名稱
shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.app_name));
//指定當(dāng)前的Activity為快捷方式啟動的對象: 如 com.everest.video.VideoPlayer
//注意: ComponentName的第二個參數(shù)必須是完整的類名(包名+類名),否則無法刪除快捷方式
String appClass = this.getPackageName() + “.” +this.getLocalClassName();
ComponentName comp = new ComponentName(this.getPackageName(), appClass);
shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(Intent.ACTION_MAIN).setComponent(comp));
sendBroadcast(shortcut);
}/**
刪除程序的快捷方式
*/
private void delShortcut(){
Intent shortcut = new Intent(“com.android.launcher.action.UNINSTALL_SHORTCUT”);
//快捷方式的名稱
shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.app_name));
//指定當(dāng)前的Activity為快捷方式啟動的對象: 如 com.everest.video.VideoPlayer
//注意: ComponentName的第二個參數(shù)必須是完整的類名(包名+類名),否則無法刪除快捷方式
String appClass = this.getPackageName() + “.” +this.getLocalClassName();
ComponentName comp = new ComponentName(this.getPackageName(), appClass);
shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(Intent.ACTION_MAIN).setComponent(comp));
sendBroadcast(shortcut);
}
3, 聲明權(quán)限
在AndroidManifest.xml 文件中聲明 創(chuàng)建和刪除快捷方式時聲明權(quán)限
Java代碼