Ejemplo n.º 1
0
 /**
  * Return true if the given administrator component is currently active (enabled) in the system.
  */
 public boolean isAdminActive(ComponentName who) {
   if (mService != null) {
     try {
       return mService.isAdminActive(who);
     } catch (RemoteException e) {
       Log.w(TAG, "Failed talking with device policy service", e);
     }
   }
   return false;
 }