我希望当用户单击通知时,它会带回应用程序(而不是创建新实例)。
这是我的代码(monodroid:在 c# 中,但即使您知道如何在 android 中执行,您也可以帮助我)。
Intent i = new Intent(context, typeof(MainListProductActivity));
i.AddFlags(ActivityFlags.NewTask | ActivityFlags.BroughtToFront | ActivityFlags.ReorderToFront); // You need this if starting the activity from a service
i.SetAction(Intent.ActionMain);
i.AddCategory(Intent.CategoryLauncher);
context.StartActivity(i);
它有效,但它让我回到了 MainListProductActivity。我希望通知让我回到上次查看的活动。怎么做 ?
更多:如果应用程序未启动,我希望使用带有参数的默认活动(对我来说是启动画面)启动应用程序。
谢谢。