BroadcastReciever不从通知按钮获取数据

时间:2018-04-04 05:07:44

标签: android notifications broadcastreceiver android-broadcastreceiver notification-action

我正在尝试使用删除按钮发出通知,通知存储在SQLite DB中,在按下之后,我想删除"记录"通过id。首先,我收到通知,将其存储到db,存储唯一ID并将其传递给创建通知的方法。这个方法很好。

    public static String CUSTOM_ACTION = "com.example.app.Services.REMOVE";
    Intent snoozeIntent = new Intent(this, MyBroadcastReceiver.class);
    snoozeIntent.setAction(CUSTOM_ACTION);
    snoozeIntent.putExtra("NOT_WORKING", String.valueOf(id));
    PendingIntent snoozePendingIntent =
            PendingIntent.getBroadcast(this, 0, snoozeIntent, 0);

    Intent intent = new Intent(this, MainActivity.class);
    intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
    PendingIntent pendingIntent = PendingIntent.getActivity(this, 0 /* Request code */, intent,
            PendingIntent.FLAG_ONE_SHOT);

    String channelId = getString(R.string.default_notification_channel_id);
    NotificationCompat.Builder notificationBuilder =
            new NotificationCompat.Builder(this, channelId)
            .setDefaults(Notification.DEFAULT_ALL)
            .setSmallIcon(R.drawable.ic_stat_bell)
            .setContentTitle("Loggly")
            .setContentText(messageBody)
            .setAutoCancel(true)
            .setContentIntent(pendingIntent)
            .addAction(R.drawable.ic_delete_forever_black_24dp, "Remove", snoozePendingIntent);

然后我有一个广播接收器来处理来自通知的数据。这是它在我的清单文件中的样子。

    <receiver android:name=".MyBroadcastReceiver"  android:exported="false">
        <intent-filter>
            <action android:name="com.example.app.Services.REMOVE"/>
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </receiver>

这是广播接收器,我从extras得到的值总是空的...我一直试图找到一个解决方案,但没有结果。

public class MyBroadcastReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
    Bundle extras = intent.getExtras();
    String id;

    if (extras != null) {
        id = extras.getString("NOT_WORKING");
        String ns = Context.NOTIFICATION_SERVICE;
        NotificationManager notificationManager = (NotificationManager) context.getSystemService(ns);
        if (notificationManager != null) {
            notificationManager.cancel(0);
        }

        Intent inten = new Intent(context, RemoveService.class);
        inten.putExtra("NOT_WORKING", id);
        context.startService(inten);
    }
}

}

最后,我开始了意向服务,它应该删除&#34;记录&#34;从数据库,但当广播接收器没有收到ID它不能做任何事情。谢谢你的每一个建议。

1 个答案:

答案 0 :(得分:3)

我刚刚在我身边创建了一个示例通知,问题在于您创建pendingIntent的方式。只需将正确的标志添加到pendingIntent参数,它就可以正常工作。

PendingIntent snoozePendingIntent = PendingIntent.getBroadcast(this, 0, snoozeIntent, PendingIntent.FLAG_UPDATE_CURRENT);

您也可以使用FLAG_ONE_SHOT。如果它满足您的用例。您可以浏览可在PendingIntent

中使用的不同标志