大家都應該知道的就是,我們能添加快捷方式,那麼我們也能刪除快捷方式,其實這個對我們新手來說就是一個在以後自己獨立開發應用的時候的一個小例子,那麼我們怎麼樣才能實現這兩個方法那,我們用到最多的就是Intent這個,大家一定要記住,這個是必須有的,要是沒有的話,我們就不會實現這個方法。好了不占用大家的時間了。直接上代碼吧:
我們現在先來看看怎麼樣添加一個快捷方式:
Java代碼:
- /**
- * 為程序創建桌面快捷方式
- */
- 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); //不允許重復創建
- //指定當前的Activity為快捷方式啟動的對象: 如
- //com.everest.video.VideoPlayer
- //注意: ComponentName的第二個參數必須加上點號(.),否則快捷方式無法啟動相應程序
- 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);
- }
我們現在來看看刪除的快捷方式:
Java代碼:
- /**
- * 刪除程序的快捷方式
- */
- 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的第二個參數必須是完整的類名(包名+類名),否則無法刪除快捷方式
- 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);
- }