【Android】添加刪除桌面快捷方式

1、判斷是否已經創建了快捷方式

private boolean hasShortcut(){
        boolean isInstallShortcut = false;
        final ContentResolver cr = mapViewActivity.getContentResolver();
        final String AUTHORITY ="com.android.launcher.settings";
        final Uri CONTENT_URI = Uri.parse("content://" +AUTHORITY + "/favorites?notify=true");
        Cursor c = cr.query(CONTENT_URI,new String[] {"title","iconResource" },"title=?",
        new String[] {mapViewActivity.getString(R.string.app_name).trim()}, null);
        if(c!=null && c.getCount()>0){
            isInstallShortcut = true ;
        }
        return isInstallShortcut ;
}

2、創建桌面快捷方式 

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

3、刪除桌面快捷方式

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

4、權限聲明

<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />  
<uses-permission android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT" /> 


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章