1

我正在尝试在使用 ShortcutManager 的主屏幕上创建一个固定的快捷方式。我可以使用以下代码创建固定快捷方式:

Intent i = new Intent();
i.setAction(Intent.ACTION_VIEW);
i.setData(Uri.parse("www.google.com"));
if (ShortcutManagerCompat.isRequestPinShortcutSupported(context)){
    ShortcutInfoCompat shortcutInfo = new ShortcutInfoCompat.Builder(context, "#1")
    .setIntent(i)                
    .setShortLabel("label")                  
    .setIcon(IconCompat.createWithResource(context, R.drawable.ic_launcher))
    .build();

   ShortcutManagerCompat.requestPinShortcut(context, shortcutInfo, null);
}else{
    L.v("Shortcut", "Pinned shortcuts are not supported!");
}

我面临两个问题:

  1. 没有检查来处理重复的快捷方式。每次我单击按钮创建快捷方式时,它都会创建一个快捷方式,并且主屏幕会被这些快捷方式填满。有什么方法可以检查快捷方式是否已经存在,例如:-
Intent i = new Intent();
i.setAction(Intent.ACTION_VIEW);
i.setData(Uri.parse("www.google.com"));

Intent installer = new Intent();        installer.putExtra("android.intent.extra.shortcut.INTENT", i);          installer.putExtra("android.intent.extra.shortcut.NAME", "Shortcut name");          installer.putExtra("android.intent.extra.shortcut.ICON_RESOURCE", Intent.ShortcutIconResource.fromContext(getApplicationContext() , R.drawable.ic_launcher));
installer.putExtra("duplicate", false);
installer.setAction("com.android.launcher.action.INSTALL_SHORTCUT");
sendBroadcast(installer);

这段代码的问题在于它不能在 android 8.0 及更高版本中运行,但它使用以下代码正确处理快捷方式的重复:-

installer.putExtra("duplicate", false);

我想使用快捷方式管理器达到同样的目的

  1. 使用快捷方式管理器创建快捷方式时,图标会复制如下

重复图标

我已经查看了此处提供的解决方案,但到目前为止还没有运气:-

固定快捷方式中奇怪的应用程序图标重复(Android O)

有任何想法吗??

4

2 回答 2

2

您可以通过调用获取所有当前的快捷方式

List<ShortcutInfo> currPinned = shortcutManager.getPinnedShortcuts();

然后添加MapSet迭代它们,如果它已经存在,请不要再次添加

if (currPinned != null) { for (ShortcutInfo shortcut: currPinned) { currPinnedMap.put(shortcut.getId(), shortcut); } } .... //iterate over you "new shortcuts" and check if the present already if (currPinnedMap.containsKey(id)) { continue; } // add really new ones

于 2019-08-05T14:37:44.543 回答
0
fun isPinnedShortcutsExits(context: Context, id: String): Boolean {
    return when {
        Build.VERSION.SDK_INT >= 30 -> {
            context.getSystemService(ShortcutManager::class.java)
                .getShortcuts(ShortcutManager.FLAG_MATCH_PINNED)
                .any { it.id == id }
        }
        Build.VERSION.SDK_INT >= 25 -> {
            context.getSystemService(ShortcutManager::class.java)
                .pinnedShortcuts
                .any { it.id == id }
        }
        else -> false
    }
}

或者

ShortcutManagerCompat.getShortcuts(this, ShortcutManagerCompat.FLAG_MATCH_PINNED)
    .any { it.id == "xxx" }
于 2022-02-22T08:45:50.697 回答