I\'m developing an app which shows a notification to the user. The notification\'s objective is to make it easy to the user to return to the activity when the user is in ano
When creating your PendingIntent, you use:
Main.this.getBaseContext()
You should use the default Activity context if you want to return to the same activity. Read more here:
Android - what's the difference between the various methods to get a Context?