Home | History | Annotate | Download | only in incallui

Lines Matching refs:color

20 import android.graphics.Color;
32 * Calculates the background color for the in call window. The background color is based on the SIM
46 * determine the theme color for InCallUI.
73 colorMap.calculatePrimaryAndSecondaryColor(R.color.incall_call_spam_background_color);
74 backgroundColorTop = context.getColor(R.color.incall_background_gradient_spam_top);
75 backgroundColorMiddle = context.getColor(R.color.incall_background_gradient_spam_middle);
76 backgroundColorBottom = context.getColor(R.color.incall_background_gradient_spam_bottom);
77 backgroundColorSolid = context.getColor(R.color.incall_background_multiwindow_spam);
80 backgroundColorTop = context.getColor(R.color.incall_background_gradient_top);
81 backgroundColorMiddle = context.getColor(R.color.incall_background_gradient_middle);
82 backgroundColorBottom = context.getColor(R.color.incall_background_gradient_bottom);
83 backgroundColorSolid = context.getColor(R.color.incall_background_multiwindow);
86 // the phone account color.
140 private static int applyAlpha(@ColorInt int color, @ColorInt int sourceColorWithAlpha) {
141 return ColorUtils.setAlphaComponent(color, Color.alpha(sourceColorWithAlpha));