Android:如何通过调用意图服务来刷新活动

时间:2019-05-23 23:13:44

标签: java android android-activity android-intentservice

我想刷新活动并将数据从意图服务传递给它。以下是我当前的设置。我无法传递数据,也无法刷新服务中的活动。任何指导将不胜感激。

服务

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);

0 个答案:

没有答案