欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android如何获取系统通知的开启状态详解

程序员文章站 2023-11-12 13:54:58
前言 大家应该都有所体会,平常在android应用中,有时候会用到系统通知是否开启的状态,以便进行下一步操作,所以,获取到状态是很有必要的,之前一直苦于找不到合适的方法来...

前言

大家应该都有所体会,平常在android应用中,有时候会用到系统通知是否开启的状态,以便进行下一步操作,所以,获取到状态是很有必要的,之前一直苦于找不到合适的方法来解决,因为毕竟涉及到系统,不好办,今日看到大神支招,试了一下,很好用,话不多少了,来一起看看详细的介绍吧。

有图有真相,首先到设置里边关闭该应用的通知开关:

Android如何获取系统通知的开启状态详解

然后在应用中,点击按钮,获取状态:

Android如何获取系统通知的开启状态详解

这时候,回到设置里,打开通知按钮:

Android如何获取系统通知的开启状态详解

再次点击应用中的测试按钮,可以看到,通知已经可用了:

Android如何获取系统通知的开启状态详解

代码量很少,但是很精辟,就一个工具类,用到了java反射原理:

public class notificationsutils {
 private static final string check_op_no_throw = "checkopnothrow";
 private static final string op_post_notification = "op_post_notification";
 public static boolean isnotificationenabled(context context) {
  appopsmanager mappops = (appopsmanager)
  context.getsystemservice(context.app_ops_service);
  applicationinfo appinfo = context.getapplicationinfo();
  string pkg = context.getapplicationcontext().getpackagename();
  int uid = appinfo.uid;
  class appopsclass = null; /* context.app_ops_manager */
  try {
   appopsclass = class.forname(appopsmanager.class.getname());
   method checkopnothrowmethod = appopsclass.getmethod(check_op_no_throw, integer.type, integer.type, string.class);
   field oppostnotificationvalue = appopsclass.getdeclaredfield(op_post_notification);
   int value = (int)oppostnotificationvalue.get(integer.class);
   return ((int)checkopnothrowmethod.invoke(mappops,value, uid, pkg) == appopsmanager.mode_allowed);
  }
  catch (classnotfoundexception e) {
   e.printstacktrace();
  } catch (nosuchmethodexception e) {
   e.printstacktrace();
  } catch (nosuchfieldexception e) {
   e.printstacktrace();
  } catch (invocationtargetexception e) {
   e.printstacktrace();
  } catch (illegalaccessexception e) {
   e.printstacktrace();
  }
  return false;
 }
}

总结

好了,以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对的支持。