How to open system notification categories screen in Samsung devices programmatically

19 views Asked by At

I am using the snip code below to open the system notification categories screen:

Intent settingsIntent = new Intent(Settings.ACTION_APP_NOTIFICATION_SETTINGS)
       .putExtra(Settings.EXTRA_APP_PACKAGE, getPackageName());

startActivity(settingsIntent);

It works fine on almost every device. It will open this screen:

Expectation screen

But in Samsung devices, the following activity was shown instead:

Samsung device screen

So, how do I open the notification categories screen on Samsung devices?

0

There are 0 answers