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:
But in Samsung devices, the following activity was shown instead:
So, how do I open the notification categories screen on Samsung devices?