Home
last modified time | relevance | path

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

/packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/development/
DCaptionCustomFragment.java75 final String[] colorValues = new String[colorLen]; in onCreatePreferences() local
78 colorValues[i] = Integer.toHexString(color & 0x00ffffff); in onCreatePreferences()
92 mTextColorPref.setEntryValues(colorValues); in onCreatePreferences()
102 mEdgeColorPref.setEntryValues(colorValues); in onCreatePreferences()
109 mBackgroundColorPref.setEntryValues(colorValues); in onCreatePreferences()
119 mWindowColorPref.setEntryValues(colorValues); in onCreatePreferences()
/packages/apps/Settings/src/com/android/settings/accessibility/
DCaptionPropertiesFragment.java276 final int[] colorValues = res.getIntArray(R.array.captioning_color_selector_values); in initializeAllPreferences() local
280 mForegroundColor.setValues(colorValues); in initializeAllPreferences()
291 mEdgeColor.setValues(colorValues); in initializeAllPreferences()
294 final int[] bgColorValues = new int[colorValues.length + 1]; in initializeAllPreferences()
296 System.arraycopy(colorValues, 0, bgColorValues, 1, colorValues.length); in initializeAllPreferences()