4

我正在通过发送此广播来创建快捷方式。

Intent shortcutIntent = new Intent(this, AuthenticationActivity.class);
    // create the broadcast
    final Intent intent = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");

    intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
    intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, widget.name);
    intent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,
                    Intent.ShortcutIconResource.fromContext(this, widget.resourceId));
    sendBroadcast(intent);

我想知道有没有办法知道发射器是否收到了广播?我向用户展示了一个祝酒词,说快捷方式已成功创建,但某些启动器可能不支持这一点。

4

0 回答 0