Home
last modified time | relevance | path

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

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/theme/
H A DThemeOverlayController.java213 String sysPaletteColor = (String) jsonObject.opt(OVERLAY_CATEGORY_SYSTEM_PALETTE); in isSeedColorSet() local
214 if (sysPaletteColor == null) { in isSeedColorSet()
217 if (!sysPaletteColor.startsWith("#")) { in isSeedColorSet()
218 sysPaletteColor = "#" + sysPaletteColor; in isSeedColorSet()
220 final int systemPaletteColorArgb = Color.parseColor(sysPaletteColor); in isSeedColorSet()
228 Log.d(TAG, "Same as previous set system palette: " + sysPaletteColor); in isSeedColorSet()