gpt4 book ai didi

java - 如何以编程方式生成图标并使用它代替快捷方式图标?

转载 作者:行者123 更新时间:2023-12-02 01:19:12 28 4
gpt4 key购买 nike

是否有任何方法可以以编程方式生成图标(恒定的背景和中心的文本(来自可以更改的变量))并使用它而不是快捷方式图标?

最佳答案

看起来 Android 的 ShortcutManager 可能最适合您的需求,因为它允许静态和动态生成快捷方式。 https://developer.android.com/guide/topics/ui/shortcuts.html#dynamic

ShortcutManager shortcutManager = getSystemService(ShortcutManager.class);

ShortcutInfo shortcut = new ShortcutInfo.Builder(this, SHORTCUT_ID)
.setShortLabel("My Shortcut")
.setLongLabel("This is my shortcut")
.setIcon(Icon.createWithResource(context, R.drawable.mipmap))
.setIntent(SHORTCUT_ACTION)
.build();

shortcutManager.setDynamicShortcuts(Arrays.asList(shortcut));

关于java - 如何以编程方式生成图标并使用它代替快捷方式图标?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57637734/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com