Example usage for android.app.admin DevicePolicyManager setOrganizationColorForUser

List of usage examples for android.app.admin DevicePolicyManager setOrganizationColorForUser

Introduction

In this page you can find the example usage for android.app.admin DevicePolicyManager setOrganizationColorForUser.

Prototype

public void setOrganizationColorForUser(@ColorInt int color, @UserIdInt int userId) 

Source Link

Usage

From source file:com.android.managedprovisioning.ProfileOwnerProvisioningService.java

private void setOrganizationColor() {
    if (mParams.mainColor != null) {
        DevicePolicyManager dpm = (DevicePolicyManager) getSystemService(Context.DEVICE_POLICY_SERVICE);
        dpm.setOrganizationColorForUser(mParams.mainColor, mManagedProfileOrUserInfo.id);
    }//ww  w  .  j a  v  a  2  s .com
}