Android Status Bar Notifications - Opening the correct activity when selecting a notification

后端 未结 1 1659
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-05 09:02

I have been having a problem with a notification not opening/going to the correct activity when it has been clicked.

My notification code (located in a class which e

相关标签:
1条回答
  • 2021-01-05 09:40

    May have actually answered my own question:

    Intent notifyIntent = new Intent(Intent.ACTION_MAIN);
    notifyIntent.setClass(getApplicationContext(), Main.class);
    
    0 讨论(0)
提交回复
热议问题