Home
last modified time | relevance | path

Searched refs:activatedColor (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/android/widget/
DDatePickerCalendarDelegate.java203 final int activatedColor; in applyLegacyColorFixes() local
206 activatedColor = color.getColorForState(StateSet.get( in applyLegacyColorFixes()
211 activatedColor = color.getDefaultColor(); in applyLegacyColorFixes()
216 defaultColor = multiplyAlphaComponent(activatedColor, disabledAlpha); in applyLegacyColorFixes()
219 if (activatedColor == 0 || defaultColor == 0) { in applyLegacyColorFixes()
225 final int[] colors = new int[] { activatedColor, defaultColor }; in applyLegacyColorFixes()
DTimePickerClockDelegate.java276 final int activatedColor; in applyLegacyColorFixes() local
279 activatedColor = color.getColorForState(StateSet.get( in applyLegacyColorFixes()
284 activatedColor = color.getDefaultColor(); in applyLegacyColorFixes()
289 defaultColor = multiplyAlphaComponent(activatedColor, disabledAlpha); in applyLegacyColorFixes()
292 if (activatedColor == 0 || defaultColor == 0) { in applyLegacyColorFixes()
298 final int[] colors = new int[] { activatedColor, defaultColor }; in applyLegacyColorFixes()
DSimpleMonthView.java321 final int activatedColor = dayBackgroundColor.getColorForState( in setDaySelectorColor() local
323 mDaySelectorPaint.setColor(activatedColor); in setDaySelectorColor()
324 mDayHighlightSelectorPaint.setColor(activatedColor); in setDaySelectorColor()