如何判断广播是否收到Android

时间:2016-10-03 18:00:18

标签: android android-broadcast android-broadcastreceiver android-shortcut

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

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

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

0 个答案:

没有答案