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

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
H A DTask.java155 public int colorPrimary; field in class:Task
204 String dismissDescription, String appInfoDescription, int colorPrimary,
219 this.colorPrimary = hasAffiliationGroupColor ? affiliationColor : colorPrimary;
221 this.useLightOnPrimaryColor = Utilities.computeContrastBetweenColors(this.colorPrimary,
248 this.colorPrimary = o.colorPrimary;
202 Task(TaskKey key, int affiliationTaskId, int affiliationColor, Drawable icon, ThumbnailData thumbnail, String title, String titleDescription, String dismissDescription, String appInfoDescription, int colorPrimary, int colorBackground, boolean isLaunchTarget, boolean isStackTask, boolean isSystemApp, boolean isDockable, Rect bounds, ActivityManager.TaskDescription taskDescription, int resizeMode, ComponentName topActivity, boolean isLocked) argument
/frameworks/base/core/java/android/app/
H A DActivityManager.java1211 * @param colorPrimary A color to override the theme's primary color. This color must be
1214 public TaskDescription(String label, Bitmap icon, int colorPrimary) { argument
1215 this(label, icon, null, colorPrimary, 0, 0, 0);
1216 if ((colorPrimary != 0) && (Color.alpha(colorPrimary) != 255)) {
1248 public TaskDescription(String label, Bitmap icon, String iconFilename, int colorPrimary, argument
1253 mColorPrimary = colorPrimary;
1523 " IconFilename: " + mIconFilename + " colorPrimary: " + mColorPrimary +

Completed in 4602 milliseconds