docs: Fixed code snippet in notify-user/navigation.html
Bug: 25098348 Change-Id: Ic116900eb9c6e1ebfbc6b99673ffeff3f2df8533
This commit is contained in:
@@ -205,7 +205,7 @@ Intent notifyIntent =
|
||||
notifyIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK |
|
||||
Intent.FLAG_ACTIVITY_CLEAR_TASK);
|
||||
// Creates the PendingIntent
|
||||
PendingIntent notifyIntent =
|
||||
PendingIntent pendingIntent =
|
||||
PendingIntent.getActivity(
|
||||
this,
|
||||
0,
|
||||
@@ -214,7 +214,7 @@ PendingIntent notifyIntent =
|
||||
);
|
||||
|
||||
// Puts the PendingIntent into the notification builder
|
||||
builder.setContentIntent(notifyIntent);
|
||||
builder.setContentIntent(pendingIntent);
|
||||
// Notifications are issued by sending them to the
|
||||
// NotificationManager system service.
|
||||
NotificationManager mNotificationManager =
|
||||
|
||||
Reference in New Issue
Block a user