gpt4 book ai didi

Android PendingIntent 将您带到一个已经存在的 Activity ?

转载 作者:IT老高 更新时间:2023-10-28 22:17:18 36 4
gpt4 key购买 nike

真的不知道如何搜索这个...

每当从我的队列中添加或删除作业以在状态栏中放置通知时,我都会调用以下内容:

private void showNotification()
{
int jobsize = mJobQueue.size();
int icon = (jobsize == 0) ?
android.R.drawable.stat_sys_upload_done :
android.R.drawable.stat_sys_upload;
Notification notification =
new Notification(icon, "Test", System.currentTimeMillis());
Intent intent = new Intent(this, FileManagerActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(this, 0, intent, 0);

notification.flags =
(Notification.FLAG_SHOW_LIGHTS | Notification.FLAG_AUTO_CANCEL);
notification.setLatestEventInfo(this,
"Uploading to our servers",
getString((jobsize > 0) ?
R.string.notification_active_transfers :
R.string.notification_no_transfers),
pendingIntent);

mNotifyManager.notify(NOTIFICATION, notification);
}

现在的行为是这样的:

  • 如果用户退出并点击通知,它仍然会打开一个新的 FileManagerActivity(操作!)我可以通过从我的身份验证 Activity 开始并以自然顺序将 Intent 传递到我的堆栈来解决这个问题,当应用程序已经运行时,我遇到了困难。

  • 如果用户已经打开了 FileManagerActivity,点击通知会在它上面放置第二个实例。在这种情况下,我希望当前正在运行的 FileManagerActivity 接收焦点,而不是启动一个新实例。

我怎样才能得到正确的行为?

最佳答案

我以前通过设置我的 Activity 来做到这一点使用 launch mode应用程序 list 中的“singleTop”。它将使用现有的 Activity (如果存在)来实现所需的功能。在这种情况下,onNewIntent 将在您的 Activity 中被调用。

如果用户未登录,您将需要 checkin FileManagerActivity 以进行身份​​验证,并酌情启动新 Activity 。

关于Android PendingIntent 将您带到一个已经存在的 Activity ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5465279/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com