Searched defs:colorPrimary (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
H A DTask.java121 public int colorPrimary; field in class:Task
136 String activityTitle, Drawable activityIcon, int colorPrimary,
146 this.colorPrimary = hasAffiliationGroupColor ? taskAffiliationColor : colorPrimary;
147 this.useLightOnPrimaryColor = Utilities.computeContrastBetweenColors(this.colorPrimary,
163 this.colorPrimary = o.colorPrimary;
135 Task(TaskKey key, boolean isActive, int taskAffiliation, int taskAffiliationColor, String activityTitle, Drawable activityIcon, int colorPrimary, boolean lockToThisTask, boolean lockToTaskEnabled, Bitmap icon, String iconFilename) argument
/frameworks/base/core/java/android/app/
H A DActivityManager.java539 * @param colorPrimary A color to override the theme's primary color. This color must be opaque.
541 public TaskDescription(String label, Bitmap icon, int colorPrimary) { argument
542 if ((colorPrimary != 0) && (Color.alpha(colorPrimary) != 255)) {
548 mColorPrimary = colorPrimary;
552 public TaskDescription(String label, int colorPrimary, String iconFilename) { argument
553 this(label, null, colorPrimary);
753 " colorPrimary: " + mColorPrimary;

Completed in 488 milliseconds