当前位置:   article > 正文

关于安卓判断通知权限_安卓推送通知权限

安卓推送通知权限

作为Android开发,通知功能现在基本上是每一个app必要的需求,无论是集成第三方通知SDK,还是自己实现,开启通知权限是必要的条件。

本人集成过腾讯推送、firebase推送,国内app使用腾讯推送居多,而上架Google 商场的app,基本首选是firebase ,因为是第三方平台,一般都配有开发文档,按照步骤操作即可,但是呢?很多文档里面是没有涉及到判断是否app开启通知权限的内容,毕竟这部分属于app原则上说,不是第三方该考虑的问题,只会提醒要开启权限,今天这篇文章就来讲讲开启通知权限。

与相机等权限大体一致,通知权限也是系统权限之一,开启该权限的方法有两种。一种是直接打开app的系统设置页面,找到通知管理,开启通知即可。但是大部分app是会有提醒功能,如果app没有开启通知权限,会弹出一个弹框,引导用户跳转到设置页面去手动开启。

跳转系统设置页面去开启不难,难点是在判断是否开启权限,在NotificationManagerCompat还没出现之前(具体哪个API版本推出这个类不清楚),需要分API来判断,有两个阶段,分别是Android系统版本4.4以上到8.0以下,另外一个是8.0以上。

我们判断通知权限一般是用NotificationManager,但是在4.4以上到8.0以下是无法使用NotificationManager的。

也就是说在这系统版本阶段,要判断是否开启通知权限,方法不一样,这种情况很正常,说明Android 版本更新的时候,没有做向下做兼容旧版本这件事,所以要使用不同的方法来实现,用同一套方法做不到兼容性。

具体代码如下:

  1. public class NoticePermissionUtil {
  2. private static final String CHECK_OP_NO_THROW = "checkOpNoThrow";
  3. private static final String OP_POST_NOTIFICATION = "OP_POST_NOTIFICATION";
  4. //调用该方法获取是否开启通知栏权限
  5. public static boolean isNotifyEnabled(Context context) {
  6. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
  7. return isEnableV26(context);
  8. } else {
  9. return isEnabledV19(context);
  10. }
  11. }
  12. /**
  13. * 8.0以下判断
  14. *
  15. * @param context api19 4.4及以上判断
  16. * @return
  17. */
  18. private static boolean isEnabledV19(Context context) {
  19. AppOpsManager mAppOps =
  20. (AppOpsManager) context.getSystemService(Context.APP_OPS_SERVICE);
  21. ApplicationInfo appInfo = context.getApplicationInfo();
  22. String pkg = context.getApplicationContext().getPackageName();
  23. int uid = appInfo.uid;
  24. Class appOpsClass;
  25. try {
  26. appOpsClass = Class.forName(AppOpsManager.class.getName());
  27. Method checkOpNoThrowMethod =
  28. appOpsClass.getMethod(CHECK_OP_NO_THROW,
  29. Integer.TYPE, Integer.TYPE, String.class);
  30. Field opPostNotificationValue = appOpsClass.getDeclaredField(OP_POST_NOTIFICATION);
  31. int value = (Integer) opPostNotificationValue.get(Integer.class);
  32. return ((Integer) checkOpNoThrowMethod.invoke(mAppOps, value, uid, pkg) ==
  33. AppOpsManager.MODE_ALLOWED);
  34. } catch (Exception e) {
  35. e.printStackTrace();
  36. return true;
  37. }
  38. }
  39. /**
  40. * 8.0及以上通知权限判断
  41. *
  42. * @param context
  43. * @return
  44. */
  45. private static boolean isEnableV26(Context context) {
  46. ApplicationInfo appInfo = context.getApplicationInfo();
  47. String pkg = context.getApplicationContext().getPackageName();
  48. int uid = appInfo.uid;
  49. try {
  50. NotificationManager notificationManager = (NotificationManager)
  51. context.getSystemService(Context.NOTIFICATION_SERVICE);
  52. @SuppressLint("DiscouragedPrivateApi")
  53. Method sServiceField = notificationManager.getClass().getDeclaredMethod("getService");
  54. sServiceField.setAccessible(true);
  55. Object sService = sServiceField.invoke(notificationManager);
  56. Method method = null;
  57. if (sService != null) {
  58. method = sService.getClass().getDeclaredMethod("areNotificationsEnabledForPackage"
  59. , String.class, Integer.TYPE);
  60. method.setAccessible(true);
  61. }
  62. return (boolean) method.invoke(sService, pkg, uid);
  63. } catch (Exception e) {
  64. return true;
  65. }
  66. }
  67. }

我们直接调用isNotifyEnabled()即可,返回true则说明已经开启通知权限,false则没有,当false的时候跳转到设置页面去开启就行,这部分代码这里就不写了。下面讲NotificationManagerCompat会有。

那么NotificationManagerCompat就是NotificationManager兼容性库,适用于旧版平台,也就是说使用NotificationManagerCompat来判断是否开启通知权限就行,兼容旧版本。那么代码上就简单了。

  1. public class CheckNotifyPermissionUtils {
  2. /**
  3. * 系统层面通知开关有没有开启
  4. * Build.VERSION.SDK_INT >= 24
  5. * Build.VERSION.SDK_INT >= 19
  6. *
  7. * @param mContext
  8. * @return
  9. */
  10. public static boolean checkNotifyPermission(Context mContext) {
  11. NotificationManagerCompat manager = NotificationManagerCompat.from(mContext);
  12. boolean isOpened = manager.areNotificationsEnabled();
  13. return isOpened;
  14. }
  15. /**
  16. * 如果通知未打开 跳转到通知设定界面
  17. * @param mContext
  18. */
  19. public static void tryJumpNotifyPage(Context mContext) {
  20. Intent intent = new Intent();
  21. try {
  22. if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
  23. intent.setAction(Settings.ACTION_APP_NOTIFICATION_SETTINGS);
  24. intent.putExtra(Settings.EXTRA_APP_PACKAGE, mContext.getPackageName());
  25. } else if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
  26. intent.setAction("android.settings.APP_NOTIFICATION_SETTINGS");
  27. intent.putExtra("app_package", mContext.getPackageName());
  28. intent.putExtra("app_uid", mContext.getApplicationInfo().uid);
  29. } else {
  30. intent.setAction(Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
  31. intent.addCategory(Intent.CATEGORY_DEFAULT);
  32. intent.setData(Uri.parse("package:" + mContext.getPackageName()));
  33. }
  34. mContext.startActivity(intent);
  35. } catch (Exception e) {
  36. intent.setAction(Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
  37. Uri uri = Uri.fromParts("package", mContext.getPackageName(), null);
  38. intent.setData(uri);
  39. mContext.startActivity(intent);
  40. }
  41. }
  42. }

直接调用checkNotifyPermission()方法即可判断是否开启通知权限,另外tryJumpNotifyPage()提供对各版本系统跳转到设置页面的方法,调用即可。

that's all.

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/436038
推荐阅读
相关标签
  

闽ICP备14008679号