android-notificationsandroid-pendingintent

Notification with "null" PendingIntent


I'm trying to implement notification in Android.

Now I have a problem, I don't want to have a PendingIntent that user will open any Activity. How can I do that?


Solution

  • PendingIntent contentIntent = PendingIntent.getActivity(
        getApplicationContext(),
        0,
        new Intent(), // add this
        PendingIntent.FLAG_UPDATE_CURRENT);