Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/theme/
H A DThemeOverlayController.java250 String sysPaletteColor = (String) jsonObject.opt(OVERLAY_CATEGORY_SYSTEM_PALETTE); in isSeedColorSet() local
251 if (sysPaletteColor == null) { in isSeedColorSet()
254 if (!sysPaletteColor.startsWith("#")) { in isSeedColorSet()
255 sysPaletteColor = "#" + sysPaletteColor; in isSeedColorSet()
257 final int systemPaletteColorArgb = Color.parseColor(sysPaletteColor); in isSeedColorSet()
265 Log.d(TAG, "Same as previous set system palette: " + sysPaletteColor); in isSeedColorSet()