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

/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
H A DTask.java154 public int colorPrimary; field in class:Task
200 String appInfoDescription, int colorPrimary, int colorBackground,
215 this.colorPrimary = hasAffiliationGroupColor ? affiliationColor : colorPrimary;
217 this.useLightOnPrimaryColor = Utilities.computeContrastBetweenColors(this.colorPrimary,
243 this.colorPrimary = o.colorPrimary;
198 Task(TaskKey key, int affiliationTaskId, int affiliationColor, Drawable icon, Bitmap 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) argument
/frameworks/base/core/java/android/app/
H A DActivityManager.java970 * @param colorPrimary A color to override the theme's primary color. This color must be
973 public TaskDescription(String label, Bitmap icon, int colorPrimary) { argument
974 this(label, icon, null, colorPrimary, 0);
975 if ((colorPrimary != 0) && (Color.alpha(colorPrimary) != 255)) {
1007 public TaskDescription(String label, Bitmap icon, String iconFilename, int colorPrimary, argument
1012 mColorPrimary = colorPrimary;
1225 " IconFilename: " + mIconFilename + " colorPrimary: " + mColorPrimary +

Completed in 1528 milliseconds