Pending intent always make new activity

后端 未结 6 2138
耶瑟儿~
耶瑟儿~ 2020-12-20 14:51

i trying to make app with nfc function. the problem is when nfc tag discovered, pending intent always make a new activity that already exist. i\'m using tab host. how to mak

6条回答
  •  [愿得一人]
    2020-12-20 15:20

    Try this:

    mNotificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
    

    And in your manifest:

    android:launchMode="singleTask"
    

提交回复
热议问题