我如何获得从 NotificationManager 开始的活动的结果?
换句话说,我需要从 PendingIntent 中获取 resultCode。
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:此代码在活动之外,这就是它接收上下文作为参数的原因