转载自:http://orgcent.com/android-add-del-shortcut-desktop/


Android桌面程序提供了应用添加和删除桌面快捷方式的功能以及判断快捷方式是否存在,只要传入快捷方式标题、图标及点击快捷方式执行的应用Intent即可。代码如下:

1、Android添加桌面快捷方式

/** * 为当前应用添加桌面快捷方式 *  * @param cx * @param appName *            快捷方式名称 */public static void addShortcut(Context cx) {    Intent shortcut = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");    Intent shortcutIntent = cx.getPackageManager()            .getLaunchIntentForPackage(cx.getPackageName());    shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);    // 获取当前应用名称    String title = null;    try {        final PackageManager pm = cx.getPackageManager();        title = pm.getApplicationLabel(                pm.getApplicationInfo(cx.getPackageName(),                        PackageManager.GET_META_DATA)).toString();    } catch (Exception e) {    }    // 快捷方式名称    shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, title);    // 不允许重复创建(不一定有效)    shortcut.putExtra("duplicate", false);    // 快捷方式的图标    Parcelable iconResource = Intent.ShortcutIconResource.fromContext(cx,            R.drawable.ic_launcher);    shortcut.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, iconResource);    cx.sendBroadcast(shortcut);}

2、Android删除桌面快捷方式

/** * 删除当前应用的桌面快捷方式 *  * @param cx */public static void delShortcut(Context cx) {    Intent shortcut = new Intent(            "com.android.launcher.action.UNINSTALL_SHORTCUT");    // 获取当前应用名称    String title = null;    try {        final PackageManager pm = cx.getPackageManager();        title = pm.getApplicationLabel(                pm.getApplicationInfo(cx.getPackageName(),                        PackageManager.GET_META_DATA)).toString();    } catch (Exception e) {    }    // 快捷方式名称    shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, title);    Intent shortcutIntent = cx.getPackageManager()            .getLaunchIntentForPackage(cx.getPackageName());    shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);    cx.sendBroadcast(shortcut);}

3、Android判断应用是否已存在桌面快捷方式

/** * 判断桌面是否已添加快捷方式 *  * @param cx * @param titleName *            快捷方式名称 * @return */public static boolean hasShortcut(Context cx) {    boolean result = false;    // 获取当前应用名称    String title = null;    try {        final PackageManager pm = cx.getPackageManager();        title = pm.getApplicationLabel(                pm.getApplicationInfo(cx.getPackageName(),                        PackageManager.GET_META_DATA)).toString();    } catch (Exception e) {    }    final String uriStr;    if (android.os.Build.VERSION.SDK_INT < 8) {        uriStr = "content://com.android.launcher.settings/favorites?notify=true";    } else {        uriStr = "content://com.android.launcher2.settings/favorites?notify=true";    }    final Uri CONTENT_URI = Uri.parse(uriStr);    final Cursor c = cx.getContentResolver().query(CONTENT_URI, null,            "title=?", new String[] { title }, null);    if (c != null && c.getCount() > 0) {        result = true;    }    return result;}

4、相关权限配置

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





更多相关文章

  1. android 获取连接WiFi的名称SSID
  2. Android widget桌面插件
  3. Android 桌面组件
  4. Android Launcher 如何去掉主菜单,所有应用摆在桌面,类似小米桌面
  5. Android设备预计将超微软
  6. Android studio无法修改桌面的图标(已解决)
  7. 微软之鉴:Google不会将Android与Chrome OS融合?
  8. Android 应用没有桌面图标

随机推荐

  1. android之requestWindowFeature详解
  2. android 设置应用程序 默认值
  3. JAVA/Android(安卓)读写文件,避免中文乱码
  4. Android性能测试之内存泄露以及GC机制浅
  5. cocos2dx 在mac下开发ios和android游戏
  6. Android(安卓)Studio打包apk
  7. android PowerManager wakelock
  8. android 混淆文件proguard.cfg详解
  9. 个人收集的Android开发相关网站集
  10. Android开发中调用系统设置界面