I have question about notifications. I want to build an app with one buttons called (add notification) when I press add notification a notification is created Then, if I press the notification it takes me back to the activity.
I managed to create a notification but when i press on it, it makes nothing. What do I have to add so the notification sends me back to the activity?
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
}
NotificationManager nmanger;
static int id=1;
public void buclick(View view) {
    NotificationCompat.Builder nbuild= (NotificationCompat.Builder) new  NotificationCompat.Builder(this)
        .setContentTitle("Danger")
        .setContentText("the raining is comming soon")
        .setSmallIcon(R.drawable.amule);
   nmanger =(NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);
   nmanger.notify(id,nbuild.build());
   id++;
}
 
     
     
     
    