我想刷新活动并将数据从意图服务传递给它。以下是我当前的设置。我无法传递数据,也无法刷新服务中的活动。任何指导将不胜感激。
服务
NotificationManager nm = (NotificationManager)context.getSystemService(NOTIFICATION_SERVICE);
Intent notificationIntent = new Intent(context, MainActivity.class);
notificationIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
notificationIntent.setAction(Intent.ACTION_MAIN);
notificationIntent.addCategory(Intent.CATEGORY_LAUNCHER);
notificationIntent.putExtra("display", true);
startActivity(notificationIntent);