How to close the status bar/notification panel after notification button click

Use the following two code line to collapse the notification bar.

Intent it = new Intent(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
context.sendBroadcast(it);

Leave a Comment