zoukankan      html  css  js  c++  java
  • Android桌面快捷方式图标生成与删除,使用Intent与launcher交互

    原创作者: dingran

      通过分析Launcher的生成快捷方式的过程,找出了使用Intent发送请求,Launcher通过自己注册的InstallShortCutReceiver和UnInstallShortCutReceiver实现了快捷方式图标的生成与移除过程。本文主要分析外部apk如何使用Intent请求生成快捷方式和移除快捷方式图标的问题。

     

    生成快捷方式代码:

    private static final String ACTION_INSTALL_SHORTCUT =
     "com.android.launcher.action.INSTALL_SHORTCUT";
     
    /**
     * 是否可以有多个快捷方式的副本
    */
    static final String EXTRA_SHORTCUT_DUPLICATE = "duplicate";

    Intent shortcutIntent = new Intent(ACTION_INSTALL_SHORTCUT); 
            shortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, 
                    getString(R.string.app_name)); 
            shortcutIntent.putExtra(EXTRA_SHORTCUT_DUPLICATE, false); 
            Intent intent2 = new Intent(Intent.ACTION_MAIN); 
            intent2.addCategory(Intent.CATEGORY_LAUNCHER);

            intent2.setComponent(new ComponentName(this.getPackageName(), 
                    ".Main")); 
             
            shortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, intent2); 
            shortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, 
                    Intent.ShortcutIconResource.fromContext(this, 
                            R.drawable.icon)); 
            sendBroadcast(shortcutIntent);

     

     注:Intent intent2 = new Intent(Intent.ACTION_MAIN);  这个也可以换成的构造参数也可以是Intent.ACTION_CREATE_SHORTCUT,也可以生成快捷方式图标,但是这样不标准,在删除的时候如果不和这个对于相同则无法删除。所以还是用Intent.ACTION_MAIN。

     

    那么删除快捷方式的代码是:

    private static final String ACTION_UNINSTALL_SHORTCUT =
    "com.android.launcher.action.UNINSTALL_SHORTCUT";

    Intent intent = new Intent(ACTION_UNINSTALL_SHORTCUT );
      intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, appName);
      ComponentName comp = new ComponentName(info.activityInfo.packageName,
        info.activityInfo.name);
      intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent()
      .setComponent(comp).setAction("android.intent.action.MAIN"));
      sendBroadcast(intent);

  • 相关阅读:
    数据库分区与分表
    Paxos算法简单介绍
    Zookeeper实现分布式锁服务(Chubby)
    java.lang.OutOfMemoryError: Java heap space错误及处理办
    关于分布式事务、两阶段提交协议、三阶提交协议
    Volatile
    寻找数组中只出现一次的数
    堆排序
    二叉树遍历 递归非递归
    redis 数据类型
  • 原文地址:https://www.cnblogs.com/xiaoxiaoboke/p/2093180.html
Copyright © 2011-2022 走看看