android中判断快捷图标是否已经添加

可以通过ShortcutManagerCompat的getShortcuts()方法获取所有添加的快捷方式,然后判断是否包含指定的id即可。

matchFlags – result includes shortcuts matching this flags. Any combination of:

  • FLAG_MATCH_MANIFEST
  • FLAG_MATCH_DYNAMIC
  • FLAG_MATCH_PINNED
  • FLAG_MATCH_CACHED

Compatibility behavior:
API 30 and above, this method matches platform behavior.
API 25 through 29, this method aggregates the result from corresponding platform api.
API 24 and earlier, this method can only returns dynamic shortcut. Calling this method with other flag will be ignored.

比如通过ShortcutManagerCompat.requestPinShortcut()方法创建的就是FLAG_MATCH_PINNED类型

如:

    private boolean checkHasSame(String id) {
        List<ShortcutInfoCompat> shortcuts = ShortcutManagerCompat.
                getShortcuts(mContext, ShortcutManagerCompat.FLAG_MATCH_PINNED); // Pin类型
        if (shortcuts.isEmpty()) {
            return false;
        }
        for (ShortcutInfoCompat shortcutInfo : shortcuts) {
            String hasId = shortcutInfo.getId();
            if (hasId.equals(id)) {
                GZLog.d(TAG, "same pin shortcut id : " + hasId);
                return true;
            }
        }
        return false;
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值