新聞中心

EEPW首頁 > 嵌入式系統(tǒng) > 設計應用 > android 創(chuàng)建 刪除桌面快捷方式

android 創(chuàng)建 刪除桌面快捷方式

作者: 時間:2016-10-08 來源:網絡 收藏

創(chuàng)建

本文引用地址:http://2s4d.com/article/201610/305647.htm

/**

為程序創(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); //不允許重復創(chuàng)建

//指定當前的Activity為快捷方式啟動的對象: 如 com.everest.video.VideoPlayer

//注意: ComponentName的第二個參數(shù)必須加上點號(.),否則快捷方式無法啟動相應程序

ComponentName comp = new ComponentName(this.getPackageName(), “.“+this.getLocalClassName());

shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(Intent.ACTION_MAIN).setComponent(comp));

//快捷方式的圖標

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); //不允許重復創(chuàng)建

//指定當前的Activity為快捷方式啟動的對象: 如 com.everest.video.VideoPlayer

//注意: ComponentName的第二個參數(shù)必須加上點號(.),否則快捷方式無法啟動相應程序

ComponentName comp = new ComponentName(this.getPackageName(), “.“+this.getLocalClassName());

shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(Intent.ACTION_MAIN).setComponent(comp));

//快捷方式的圖標

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));

//指定當前的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));

//指定當前的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, 聲明權限

在AndroidManifest.xml 文件中聲明 創(chuàng)建和刪除快捷方式時聲明權限

Java代碼



關鍵詞:

評論


相關推薦

技術專區(qū)

關閉