java中通过反射得到StatusBarManager

通过反射调用StatusBarManager中的setStatusBarIconColor函数



public static void setStatusBarIconColor(Context context,int color)
{
try {
          Object service = context.getSystemService(STATUSBAR);
          if (service != null) {
              Method expand = service.getClass().getMethod(SETSTATUSBARCOLOR,int.class);
  
              expand.invoke(service,color);
          }
      } catch (Exception e) {
          e.printStackTrace();
      }
}

你可能感兴趣的:(Android)