Notification opens activity, back button pressed, main activity is opened?

后端 未结 5 941
感情败类
感情败类 2020-12-09 20:28

The best way I can describe my problem is like this:

  1. A notification is created at boot (with a BroadcastReceiver).
  2. My app main activity i
5条回答
  •  甜味超标
    2020-12-09 20:42

    It works for me. try this:

    notifyIntent.setAction(Intent.ACTION_MAIN);
    notifyIntent.addCategory(Intent.CATEGORY_LAUNCHER);
    

提交回复
热议问题