Intent intent = new Intent(DevicePolicyManager.ACTION_ADD_DEVICE_ADMIN);
intent.putExtra(DevicePolicyManager.EXTRA_DEVICE_ADMIN, compName);
intent.putExtra(DevicePolicyManager.EXTRA_ADD_EXPLANATION,
"Add new one.");
startActivityForResult(intent, RESULT_ENABLE);
哪里
static final int RESULT_ENABLE = 1;
ComponentName compName;