Android 启动器 - 浏览器 link 重定向快捷方式

Android launcher - browser link redirect shortcut

您好!

我想添加一个 Android 启动器快捷方式来打开 link。像这样的图片 这个有可能?如果可能的话,我该怎么做?

An example of creating a dynamic shortcut and associating it with your app appears in the following code snippet:

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);

Reference