如何打开 android "Priority only allows" 屏幕

How to open the android "Priority only allows" screen

是否有打开 android "Priority only allows" 屏幕的意图? 这是我想要达到的截图。不幸的是,根据 Android 版本,它可能看起来非常不同。用户到达正确的地方有些困惑:

对于 Android 馅饼是:

您可以像这样打开 Priority only allows 意图

  startActivityForResult(new Intent(Settings.ACTION_ZEN_MODE_PRIORITY_SETTINGS), 0);

希望对您有所帮助。

编辑:

如果是Android Pie你可以试试这个

  startActivityForResult(new Intent(Settings.ACTION_NOTIFICATION_POLICY_ACCESS_SETTINGS), 0);