询问免打扰权限时出现“此功能在此设备上不可用”
我们如何检查设备是否具有免打扰功能或任何其他解决方案。
我正在使用以下代码获取免打扰权限
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M
&& !notificationManager.isNotificationPolicyAccessGranted()) {
Intent intent = new Intent(android.provider.Settings.ACTION_NOTIFICATION_POLICY_ACCESS_SETTINGS);
startActivity(intent);
}我使用的设备有奥利奥和牛油糖。

发布于 2018-11-06 18:23:34
这个功能似乎并不是在所有版本的Oreo上都提供。例如在Wiko Lenne5上的"Oreo Go Edition“,我也没有。
https://stackoverflow.com/questions/52735296
复制相似问题