Как получить результат действия, запущенного из NotificationManager?
Другими словами, мне нужно получить resultCode из PendingIntent.
public void test(Context context){
Notification notification = new Notification(null, "text", System.currentTimeMillis());
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("http://www.example.com"));
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, 0);
notification.setLatestEventInfo(context, "text", "text", pendingIntent);
notificationManager.notify(0, notification);
}
Я хочу получать уведомления, когда работа браузера заканчивается.
OBS: этот код находится вне действия, поэтому он получает
контекст как параметр