我已经制作了自定义消息应用
所以当新消息出现时,我的应用程序正常运行并显示活动
当我点击消息按钮时,它会显示包含新消息的消息列表。
所以我想删除消息通知!
我听说方法cancel()就是这样做的。
但我不知道关于消息通知的方法cancel()的id。
我该怎么做?
public void btnPressed(View view)
{
badge.hide();
Intent msgIntent= new Intent(getApplicationContext(),SecureMessagesActivity.class);
startActivity(msgIntent);
nm.cancel(0);
}
答案 0 :(得分:0)
您应该传递cancel
id
传递notify
方法的mNotificationManager.notify(1, notification);
。所以如果你正在做:
1
然后,您应该使用ID mNotificationManager.cancel(1);
:
{{1}}