android - 通知恢复 Activity

标签 android notifications resume

我知道,这种类型的问题有好几个,但我都试过了,还是不行。
好的,对于我的应用程序;我有一个 Activity 。在这个 Activity 中,有 4 个选项卡,第四个包含一个列表和一个记录按钮。当我推送记录时,有一个 GPS 监听器启动。获取新的 gps 值后,将其插入列表。
这到目前为止有效!
如果我单击主页按钮它仍然有效,如果我然后长按它。它在打开特定选项卡的情况下恢复该 Activity ,并且列表仍然包含列表项并且 gps 监听器仍然处于 Activity 状态。
这也很好用!
现在我想添加一个通知,它将列表的 gps 值计数显示为 .number。在每个新的 GPS 信号上,它都会用新号码更新通知图标。这没问题,但点击通知的操作完全搞砸了我的应用程序。

实际代码如下所示:

public void callNotify(String text) {
    notif = new Notification();
    Intent contentIntent = new Intent(this, tabactivity.class);
    contentIntent.putExtra("fid", this.specialvalue);
    contentIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP
        | Intent.FLAG_ACTIVITY_SINGLE_TOP);
    notif.icon = R.drawable.icon;
    notif.setLatestEventInfo(this, getString(R.string.app_name), text,
        PendingIntent.getActivity(this.getBaseContext(), 0, contentIntent,
            PendingIntent.FLAG_UPDATE_CURRENT));
    notif.ledARGB = Color.RED;
    notif.ledOnMS = 200;
    notif.ledOffMS = 200;
    notif.flags = Notification.FLAG_SHOW_LIGHTS
        | Notification.FLAG_ONGOING_EVENT
        | Notification.FLAG_ONLY_ALERT_ONCE;
    notif.number = notifyNumber;
    mNotificationManager.notify(notifyNumber, notif);
}

public void updateNotify(String text) {
    notifyNumber++;
    notif.number = (int) (notifyNumber / 2);
    Intent contentIntent = new Intent(this, tabactivity.class);
    contentIntent.putExtra("fid", this.specialvalue);
    contentIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP
        | Intent.FLAG_ACTIVITY_SINGLE_TOP);
    notif.setLatestEventInfo(this, getString(R.string.app_name), text,
        PendingIntent.getActivity(this.getBaseContext(), 0, contentIntent,
            PendingIntent.FLAG_UPDATE_CURRENT));
    mNotificationManager.cancel((notifyNumber - 2));
    mNotificationManager.notify(notifyNumber, notif);
}

因此,updateNotify() 在新的 gps 信号上被调用。而 callNotify() 是第一个,在它启动 gps 监听器之前。而且,是的,notifyNumber/2 是我的 Intent ,因为我会进一步处理这个数字。

如果我像这样编译它,并单击通知,它会在第一个选项卡上打开一个新的选项卡 Activity 。如果我点击回来,我会得到很多错误(数据库仍然打开,空指针和东西)。我想是因为它启动了一个新的 tabactivity 而另一个仍然打开,因为我可以看到 gps 监听器仍在工作。

所以,我想要的是,我可以执行以下操作: 我打开我的应用程序,转到选项卡 Activity ,打开选项卡 4,单击记录。如果我点击返回,它应该隐藏应用程序,如果我只点击主页按钮。但是有一个通知。 如果我点击那个,它应该再次显示隐藏的 Activity ,仅此而已。 那么,我在那里做错了什么? 我想,标志 FLAG_ACTIVITY_CLEAR_TOP 和 FLAG_ACTIVITY_SINGLE_TOP 应该可以解决问题?

最佳答案

这里发生的事情有点令人困惑,所以请耐心等待。

FLAG_ACTIVITY_SINGLE_TOP 根据文档 如果设置,如果 Activity 已经在历史堆栈的顶部运行,则不会启动。 所以如果当前 Activity 是不在历史堆栈的顶部,它将被重新启动。

FLAG_ACTIVITY_CLEAR_TOP 再次来自文档 如果设置,并且正在启动的 Activity 已经在当前任务中运行,那么不是启动该 Activity 的新实例,而是所有其他 Activity 在它之上的将被关闭,并且这个 Intent 将作为一个新的 Intent 传递给(现在在顶部的)旧 Activity。

默认情况下,TabActivity 将始终打开选项卡 0,您可以使用 setDefaultTab 通过代码更改它。 TabHost 中的每个 Tab 也是一个新的 Intent

If I compile it like this, and click on the Notification, it opens a NEW tabactivity on the first tab. If I click back then, I get alot of errors (database is still open, nullpointers and stuff).

发生这种情况我认为是因为当前的 Intent 是 tab4(实际上它是 #3, 0,1,2,3)并且您的通知正在调出tabactivity.class。由于它不是 Activity 的或位于堆栈顶部,因此它顶部的每个 Action 都已关闭,包括 tab4。

So, what I want is, that I can do the following: I open my app, go to the tabactivity, open tab 4, click record. If I click back then, it should hide the app, also, if I just click the home button. But there is a notification. If I click on that one, it should just show the hidden acitivity again and thats it. So, what I am doing wrong there? I thought, the Flags FLAG_ACTIVITY_CLEAR_TOP and FLAG_ACTIVITY_SINGLE_TOP should solve the problem?

您混淆了标志的作用以及 homeback 键的作用。点击 home 将隐藏您的 Activity ,并且通知应该与这些标志一起正常工作(一旦您解决了我之前提到的问题)。但是,当您点击 back 时,Android 会结束当前的 Activity 并将其从堆栈中取出。由于它下面没有任何东西,因此当您按下通知时,您将被迫从头开始重新启动。

关于android - 通知恢复 Activity ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3566010/

相关文章:

android - 如何在 Android Root 上使用我的应用程序名称创建文件夹

android - 如何从布局中获取 View ?

ios - 在 App 重新进入时恢复 UIView 动画?

javascript - 检索事件列表

latex - 包 hyperref 警告 : Token not allowed in a PDF string (Unicode): removing `\\' on input line 86

android - 在android中绘制一条平滑的线并逐渐变小

javascript - 如何在网页 View Android 中的网页上运行 javascript

android - 用户通过滑动删除华为设备后在前台重新启动通知(如 Strava/Endomondo)

android - 调用 addAction 时删除通知?

ruby - 是否可以从 Rails 应用程序推送浏览器通知