Android:我想删除邮件通知

时间:2014-09-02 09:22:22

标签: android sms android-notifications

我已经制作了自定义消息应用

所以当新消息出现时,我的应用程序正常运行并显示活动

当我点击消息按钮时,它会显示包含新消息的消息列表。

所以我想删除消息通知!

我听说方法cancel()就是这样做的。

但我不知道关于消息通知的方法cancel()的id。

我该怎么做?

public void btnPressed(View view)
{
    badge.hide();
    Intent msgIntent= new Intent(getApplicationContext(),SecureMessagesActivity.class);
    startActivity(msgIntent);

    nm.cancel(0);

}

1 个答案:

答案 0 :(得分:0)

您应该传递cancel id传递notify方法的mNotificationManager.notify(1, notification); 。所以如果你正在做:

1

然后,您应该使用ID mNotificationManager.cancel(1);

取消
{{1}}