We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1415ec8 commit 147e15dCopy full SHA for 147e15d
de.vogella.android.notification/src/de/vogella/android/notification/CallNotification.java
@@ -48,7 +48,7 @@ public void createNotification() {
48
Intent intent = new Intent(this, TargetActivity.class);
49
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0,
50
intent, PendingIntent.FLAG_CANCEL_CURRENT);
51
- notification.contentIntent = intent;
+ notification.contentIntent = pendingIntent;
52
notificationManager.notify(0, notification);
53
54
// Wir simulieren mal eine lange Aktion
@@ -58,4 +58,4 @@ public void createNotification() {
58
}
59
60
61
-}
+}
0 commit comments