Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
单击后退按钮时,我想取消与我的应用程序相关的所有通知。我无法找到方法。你有什么想法吗?
希望有帮助
@Override
公共无效 onBackPressed() {
// write code for canceling the notification return;
}
这可能会帮助你
@Override public void onBackPressed() { stopSelf(); return; }