你好!
我想添加一个 Android 启动器快捷方式来打开它的链接。像这样的图像 这可能吗?如果可能的话,我该怎么做?
你好!
我想添加一个 Android 启动器快捷方式来打开它的链接。像这样的图像 这可能吗?如果可能的话,我该怎么做?
创建动态快捷方式并将其与您的应用程序关联的示例显示在以下代码段中:
ShortcutInfo shortcut = new ShortcutInfoCompat.Builder(context, "id1")
.setShortLabel("Website")
.setLongLabel("Open the website")
.setIcon(Icon.createWithResource(context, R.drawable.icon_website))
.setIntent(new Intent(Intent.ACTION_VIEW,
Uri.parse("https://www.mysite.example.com/")))
.build();
ShortcutManagerCompat.pushDynamicShortcut(context, shortcut);